public static enum Application.Shape extends Enum<Application.Shape> implements BmcEnum
Valid values are GENERIC_X86
, GENERIC_ARM
and GENERIC_X86_ARM
.
Default is GENERIC_X86
. Setting this to GENERIC_X86
, will run the functions
in the application on X86 processor architecture. Setting this to GENERIC_ARM
, will
run the functions in the application on ARM processor architecture. When set to GENERIC_X86_ARM
, functions in the application are run on either X86 or ARM processor
architecture. Accepted values are: GENERIC_X86
, GENERIC_ARM
, GENERIC_X86_ARM
Enum Constant and Description |
---|
GenericArm |
GenericX86 |
GenericX86Arm |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static Application.Shape |
create(String key) |
String |
getValue() |
static Application.Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Application.Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.Shape GenericX86
public static final Application.Shape GenericArm
public static final Application.Shape GenericX86Arm
public static final Application.Shape UnknownEnumValue
public static Application.Shape[] values()
for (Application.Shape c : Application.Shape.values()) System.out.println(c);
public static Application.Shape valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Application.Shape create(String key)
Copyright © 2016–2024. All rights reserved.