Package net.moewes.cloudui.ui5.list
Enum Ui5ListItem.InfoState
- java.lang.Object
-
- java.lang.Enum<Ui5ListItem.InfoState>
-
- net.moewes.cloudui.ui5.list.Ui5ListItem.InfoState
-
- All Implemented Interfaces:
Serializable
,Comparable<Ui5ListItem.InfoState>
- Enclosing class:
- Ui5ListItem
public static enum Ui5ListItem.InfoState extends Enum<Ui5ListItem.InfoState>
possible values for info-state attribute of ui5-li
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR
INFORMATION
NONE
SUCCESS
WARNING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ui5ListItem.InfoState
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ui5ListItem.InfoState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Ui5ListItem.InfoState NONE
-
SUCCESS
public static final Ui5ListItem.InfoState SUCCESS
-
WARNING
public static final Ui5ListItem.InfoState WARNING
-
INFORMATION
public static final Ui5ListItem.InfoState INFORMATION
-
ERROR
public static final Ui5ListItem.InfoState ERROR
-
-
Method Detail
-
values
public static Ui5ListItem.InfoState[] 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 (Ui5ListItem.InfoState c : Ui5ListItem.InfoState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ui5ListItem.InfoState valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-