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