public static enum Function.Shape extends Enum<Function.Shape> implements BmcEnum
The processor shape (GENERIC_X86
/GENERIC_ARM
) on which to run functions in
the application, extracted from the image manifest.
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 Function.Shape |
create(String key) |
String |
getValue() |
static Function.Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function.Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Function.Shape GenericX86
public static final Function.Shape GenericArm
public static final Function.Shape GenericX86Arm
public static final Function.Shape UnknownEnumValue
public static Function.Shape[] values()
for (Function.Shape c : Function.Shape.values()) System.out.println(c);
public static Function.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 Function.Shape create(String key)
Copyright © 2016–2024. All rights reserved.