Package org.teamapps.dto
Enum UiTagComboBox.WrappingMode
- java.lang.Object
-
- java.lang.Enum<UiTagComboBox.WrappingMode>
-
- org.teamapps.dto.UiTagComboBox.WrappingMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UiTagComboBox.WrappingMode>
- Enclosing class:
- UiTagComboBox
public static enum UiTagComboBox.WrappingMode extends java.lang.Enum<UiTagComboBox.WrappingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTI_LINESINGLE_LINESINGLE_TAG_PER_LINE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intjsonValue()static UiTagComboBox.WrappingModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiTagComboBox.WrappingMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_LINE
public static final UiTagComboBox.WrappingMode SINGLE_LINE
-
MULTI_LINE
public static final UiTagComboBox.WrappingMode MULTI_LINE
-
SINGLE_TAG_PER_LINE
public static final UiTagComboBox.WrappingMode SINGLE_TAG_PER_LINE
-
-
Method Detail
-
values
public static UiTagComboBox.WrappingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UiTagComboBox.WrappingMode c : UiTagComboBox.WrappingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiTagComboBox.WrappingMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
jsonValue
public int jsonValue()
-
-