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