public enum UserInterfaceThemes extends java.lang.Enum<UserInterfaceThemes>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCssPath()
Returns the path of the css for this theme.
|
java.lang.String |
toString() |
static UserInterfaceThemes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserInterfaceThemes |
valueOf(java.lang.String name,
UserInterfaceThemes defaultValue) |
static UserInterfaceThemes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserInterfaceThemes LIGHT
public static final UserInterfaceThemes DARK
public static final UserInterfaceThemes CLASSIC
public static UserInterfaceThemes[] values()
for (UserInterfaceThemes c : UserInterfaceThemes.values()) System.out.println(c);
public static UserInterfaceThemes 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 java.lang.String getCssPath()
public java.lang.String toString()
toString in class java.lang.Enum<UserInterfaceThemes>public static UserInterfaceThemes valueOf(java.lang.String name, UserInterfaceThemes defaultValue)
Copyright © 2018 Frederic Thevenet. All rights reserved.