public static enum CreateApplicationDetails.Shape extends Enum<CreateApplicationDetails.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 |
Modifier and Type | Method and Description |
---|---|
static CreateApplicationDetails.Shape |
create(String key) |
String |
getValue() |
static CreateApplicationDetails.Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateApplicationDetails.Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateApplicationDetails.Shape GenericX86
public static final CreateApplicationDetails.Shape GenericArm
public static final CreateApplicationDetails.Shape GenericX86Arm
public static CreateApplicationDetails.Shape[] values()
for (CreateApplicationDetails.Shape c : CreateApplicationDetails.Shape.values()) System.out.println(c);
public static CreateApplicationDetails.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 CreateApplicationDetails.Shape create(String key)
Copyright © 2016–2024. All rights reserved.