Enum Constant and Description |
---|
Black
The black theme.
|
Custom
Indicates a user-defined theme.
|
Dark
The dark theme.
|
Light
Indicates a light-colored theme.
|
Lila
The Lila theme.
|
Silver
The Silver theme.
|
Standard
The standard theme.
|
Vista
A theme with a Windows Vista look and feel.
|
Windows2003
The Windows 2003 standard theme.
|
Modifier and Type | Method and Description |
---|---|
static ThemeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThemeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThemeType Standard
public static final ThemeType Windows2003
public static final ThemeType Lila
public static final ThemeType Silver
public static final ThemeType Vista
public static final ThemeType Custom
public static final ThemeType Light
public static final ThemeType Dark
public static final ThemeType Black
public static ThemeType[] values()
for (ThemeType c : ThemeType.values()) System.out.println(c);
public static ThemeType 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