public enum ThemeUsage extends java.lang.Enum<ThemeUsage>
| Enum Constant and Description |
|---|
GUESTS |
LOGGED_USERS |
MOBILE |
| Modifier and Type | Method and Description |
|---|---|
static ThemeUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThemeUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThemeUsage LOGGED_USERS
public static final ThemeUsage GUESTS
public static final ThemeUsage MOBILE
public static ThemeUsage[] values()
for (ThemeUsage c : ThemeUsage.values()) System.out.println(c);
public static ThemeUsage 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