public static enum View.VIEW_ANCHOR extends Enum<View.VIEW_ANCHOR>
Enum Constant and Description |
---|
BOTTOM
The bottom.
|
LEFT
The left.
|
RIGHT
The right.
|
TOP
The top.
|
Modifier and Type | Method and Description |
---|---|
static View.VIEW_ANCHOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static View.VIEW_ANCHOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final View.VIEW_ANCHOR LEFT
public static final View.VIEW_ANCHOR RIGHT
public static final View.VIEW_ANCHOR BOTTOM
public static final View.VIEW_ANCHOR TOP
public static View.VIEW_ANCHOR[] values()
for (View.VIEW_ANCHOR c : View.VIEW_ANCHOR.values()) System.out.println(c);
public static View.VIEW_ANCHOR 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 © 2014 www.staniscia.net. All Rights Reserved.