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