Enum TagBoxWrappingMode
- java.lang.Object
-
- java.lang.Enum<TagBoxWrappingMode>
-
- org.teamapps.ux.component.field.combobox.TagBoxWrappingMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TagBoxWrappingMode>
public enum TagBoxWrappingMode extends java.lang.Enum<TagBoxWrappingMode>
-
-
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 org.teamapps.dto.UiTagComboBox.WrappingModetoUiWrappingMode()static TagBoxWrappingModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TagBoxWrappingMode[]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 TagBoxWrappingMode SINGLE_LINE
-
MULTI_LINE
public static final TagBoxWrappingMode MULTI_LINE
-
SINGLE_TAG_PER_LINE
public static final TagBoxWrappingMode SINGLE_TAG_PER_LINE
-
-
Method Detail
-
values
public static TagBoxWrappingMode[] 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 (TagBoxWrappingMode c : TagBoxWrappingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagBoxWrappingMode 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
-
toUiWrappingMode
public org.teamapps.dto.UiTagComboBox.WrappingMode toUiWrappingMode()
-
-