public enum SolidColorType extends java.lang.Enum<SolidColorType>
| Enum Constant and Description |
|---|
Automatic
Specifies the automatic color.
|
None
Specifies no color.
|
RGB
Specifies the rgb color.
|
Theme
Specifies the theme color.
|
| Modifier and Type | Method and Description |
|---|---|
static SolidColorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SolidColorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SolidColorType None
public static final SolidColorType Automatic
public static final SolidColorType RGB
public static final SolidColorType Theme
public static SolidColorType[] values()
for (SolidColorType c : SolidColorType.values()) System.out.println(c);
public static SolidColorType 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 null