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