public static enum MenuDrawer.Type extends Enum<MenuDrawer.Type>
| Enum Constant and Description |
|---|
BEHIND
Positions the drawer behind the content.
|
OVERLAY
Positions the drawer on top of the content.
|
STATIC
A static drawer that can not be dragged.
|
| Modifier and Type | Method and Description |
|---|---|
static MenuDrawer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuDrawer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuDrawer.Type BEHIND
public static final MenuDrawer.Type STATIC
public static final MenuDrawer.Type OVERLAY
public static MenuDrawer.Type[] values()
for (MenuDrawer.Type c : MenuDrawer.Type.values()) System.out.println(c);
public static MenuDrawer.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012-2013. All Rights Reserved.