public static enum LayoutBase.LabelPosition extends java.lang.Enum<LayoutBase.LabelPosition>
Enum Constant and Description |
---|
BOTTOM
Labels will located below the component they label.
|
HIDDEN
Labels will not be displayed.
|
LEFT
Labels will located to the left of the component they label.
|
RIGHT
Labels will located to the right of the component they label.
|
TOP
Labels will located above the component they label.
|
Modifier and Type | Method and Description |
---|---|
static LayoutBase.LabelPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutBase.LabelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutBase.LabelPosition TOP
public static final LayoutBase.LabelPosition LEFT
public static final LayoutBase.LabelPosition RIGHT
public static final LayoutBase.LabelPosition BOTTOM
public static final LayoutBase.LabelPosition HIDDEN
public static LayoutBase.LabelPosition[] values()
for (LayoutBase.LabelPosition c : LayoutBase.LabelPosition.values()) System.out.println(c);
public static LayoutBase.LabelPosition 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