public enum ColorAttributeValues extends java.lang.Enum<ColorAttributeValues>
List of color attributes for the elements belonging to layout of Screen.
Modifier and Type | Method and Description |
---|---|
static ColorAttributeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorAttributeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorAttributeValues _B
Blue
public static final ColorAttributeValues _G
Green
public static final ColorAttributeValues _P
Pink
public static final ColorAttributeValues _R
Red
public static final ColorAttributeValues _T
Turquoise
public static final ColorAttributeValues _W
Normal
public static final ColorAttributeValues _Y
Yellow
public static final ColorAttributeValues NONE
Default Value
public static ColorAttributeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ColorAttributeValues[] values()
for (ColorAttributeValues c : ColorAttributeValues.values()) System.out.println(c);