public enum MultiComboBoxLayoutStyle extends java.lang.Enum<MultiComboBoxLayoutStyle> implements ValueEnum
Enum Constant and Description |
---|
FLOW
use a
FlowLayout , showing values first, then the text entry area |
FLOWREVERSE
use a FlowLayout, with the text entry first and values shown afterwards
|
HORIZONTAL
Use a horizontal layout with the combo box on the right
|
HORIZONTALREVERSE
Use a horizontal layout with the combo box on the left
|
VERTICAL
Use a vertical layout
|
VERTICALREVERSE
Use a vertical layout with the combo box at the bottom
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static MultiComboBoxLayoutStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiComboBoxLayoutStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiComboBoxLayoutStyle FLOW
FlowLayout
, showing values first, then the text entry area
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "flow".
public static final MultiComboBoxLayoutStyle FLOWREVERSE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "flowReverse".
public static final MultiComboBoxLayoutStyle HORIZONTAL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "horizontal".
public static final MultiComboBoxLayoutStyle HORIZONTALREVERSE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "horizontalReverse".
public static final MultiComboBoxLayoutStyle VERTICAL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "vertical".
public static final MultiComboBoxLayoutStyle VERTICALREVERSE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "verticalReverse".
public static MultiComboBoxLayoutStyle[] values()
for (MultiComboBoxLayoutStyle c : MultiComboBoxLayoutStyle.values()) System.out.println(c);
public static MultiComboBoxLayoutStyle 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