public enum DropdownAlignRight extends Enum<DropdownAlignRight>
Enum Constant and Description |
---|
AUTO
Align to right if the drop-down menu is too large,
otherwise align to left
|
FALSE
Always align to left
|
TRUE
Always align to right
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns the value of the drop-down menu right alignment.
|
static DropdownAlignRight |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropdownAlignRight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropdownAlignRight AUTO
public static final DropdownAlignRight TRUE
public static final DropdownAlignRight FALSE
public static DropdownAlignRight[] values()
for (DropdownAlignRight c : DropdownAlignRight.values()) System.out.println(c);
public static DropdownAlignRight 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 © 2017. All rights reserved.