| Enum Constant and Description |
|---|
BOTTOM |
END
Position the drawer at the end edge.
|
LEFT |
RIGHT |
START
Position the drawer at the start edge.
|
TOP |
| Modifier and Type | Method and Description |
|---|---|
static Position |
fromValue(int value) |
static Position |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Position LEFT
public static final Position TOP
public static final Position RIGHT
public static final Position BOTTOM
public static final Position START
public static final Position END
public static Position[] values()
for (Position c : Position.values()) System.out.println(c);
public static Position 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 Position fromValue(int value)