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