Package org.teamapps.ux.component.field
Enum FieldMessage.VisibilityMode
- java.lang.Object
-
- java.lang.Enum<FieldMessage.VisibilityMode>
-
- org.teamapps.ux.component.field.FieldMessage.VisibilityMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FieldMessage.VisibilityMode>
- Enclosing class:
- FieldMessage
public static enum FieldMessage.VisibilityMode extends java.lang.Enum<FieldMessage.VisibilityMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYS_VISIBLEON_FOCUSON_HOVER_OR_FOCUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiFieldMessageVisibilityModetoUiFieldMessageVisibilityMode()static FieldMessage.VisibilityModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldMessage.VisibilityMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS_VISIBLE
public static final FieldMessage.VisibilityMode ALWAYS_VISIBLE
-
ON_FOCUS
public static final FieldMessage.VisibilityMode ON_FOCUS
-
ON_HOVER_OR_FOCUS
public static final FieldMessage.VisibilityMode ON_HOVER_OR_FOCUS
-
-
Method Detail
-
values
public static FieldMessage.VisibilityMode[] 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 (FieldMessage.VisibilityMode c : FieldMessage.VisibilityMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldMessage.VisibilityMode 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
-
toUiFieldMessageVisibilityMode
public org.teamapps.dto.UiFieldMessageVisibilityMode toUiFieldMessageVisibilityMode()
-
-