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