Package net.moewes.cloudui.ui5.list
Enum Ui5List.Mode
- java.lang.Object
-
- java.lang.Enum<Ui5List.Mode>
-
- net.moewes.cloudui.ui5.list.Ui5List.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<Ui5List.Mode>
- Enclosing class:
- Ui5List
public static enum Ui5List.Mode extends Enum<Ui5List.Mode>
possible values for attribute mode of ui5-list
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE
MULTISELECT
NONE
SINGLE_SELECT
SINGLE_SELECT_BEGIN
SINGLE_SELECT_END
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ui5List.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ui5List.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Ui5List.Mode NONE
-
SINGLE_SELECT
public static final Ui5List.Mode SINGLE_SELECT
-
SINGLE_SELECT_BEGIN
public static final Ui5List.Mode SINGLE_SELECT_BEGIN
-
SINGLE_SELECT_END
public static final Ui5List.Mode SINGLE_SELECT_END
-
MULTISELECT
public static final Ui5List.Mode MULTISELECT
-
DELETE
public static final Ui5List.Mode DELETE
-
-
Method Detail
-
values
public static Ui5List.Mode[] 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 (Ui5List.Mode c : Ui5List.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ui5List.Mode 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
-
-