Package org.teamapps.ux.component.field
Enum FieldMessage.Severity
- java.lang.Object
-
- java.lang.Enum<FieldMessage.Severity>
-
- org.teamapps.ux.component.field.FieldMessage.Severity
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FieldMessage.Severity>
- Enclosing class:
- FieldMessage
public static enum FieldMessage.Severity extends java.lang.Enum<FieldMessage.Severity>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiFieldMessageSeveritytoUiFieldMessageSeverity()static FieldMessage.SeverityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldMessage.Severity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO
public static final FieldMessage.Severity INFO
-
SUCCESS
public static final FieldMessage.Severity SUCCESS
-
WARNING
public static final FieldMessage.Severity WARNING
-
ERROR
public static final FieldMessage.Severity ERROR
-
-
Method Detail
-
values
public static FieldMessage.Severity[] 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.Severity c : FieldMessage.Severity.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.Severity 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
-
toUiFieldMessageSeverity
public org.teamapps.dto.UiFieldMessageSeverity toUiFieldMessageSeverity()
-
-