@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum EnvironmentType extends Enum<EnvironmentType>
Enum Constant and Description |
---|
ARM_CONTAINER |
ARM_LAMBDA_CONTAINER |
LINUX_CONTAINER |
LINUX_GPU_CONTAINER |
LINUX_LAMBDA_CONTAINER |
WINDOWS_CONTAINER |
WINDOWS_SERVER_2019_CONTAINER |
Modifier and Type | Method and Description |
---|---|
static EnvironmentType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static EnvironmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnvironmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvironmentType WINDOWS_CONTAINER
public static final EnvironmentType LINUX_CONTAINER
public static final EnvironmentType LINUX_GPU_CONTAINER
public static final EnvironmentType ARM_CONTAINER
public static final EnvironmentType WINDOWS_SERVER_2019_CONTAINER
public static final EnvironmentType LINUX_LAMBDA_CONTAINER
public static final EnvironmentType ARM_LAMBDA_CONTAINER
public static EnvironmentType[] values()
for (EnvironmentType c : EnvironmentType.values()) System.out.println(c);
public static EnvironmentType 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 String toString()
toString
in class Enum<EnvironmentType>
public static EnvironmentType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.