Package com.uc4.communication
Enum TimeSettings.CalendarView
- java.lang.Object
-
- java.lang.Enum<TimeSettings.CalendarView>
-
- com.uc4.communication.TimeSettings.CalendarView
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimeSettings.CalendarView>
- Enclosing class:
- TimeSettings
public static enum TimeSettings.CalendarView extends java.lang.Enum<TimeSettings.CalendarView>
Display setting for calendars.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERIOD_VIEW
Period view.WEEKS_HORIZONTALLY
Show weeks horizontally.WEEKS_VERTICALLY
Show weeks vertically.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeSettings.CalendarView
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimeSettings.CalendarView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WEEKS_VERTICALLY
public static final TimeSettings.CalendarView WEEKS_VERTICALLY
Show weeks vertically.
-
WEEKS_HORIZONTALLY
public static final TimeSettings.CalendarView WEEKS_HORIZONTALLY
Show weeks horizontally.
-
PERIOD_VIEW
public static final TimeSettings.CalendarView PERIOD_VIEW
Period view.
-
-
Method Detail
-
values
public static TimeSettings.CalendarView[] 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 (TimeSettings.CalendarView c : TimeSettings.CalendarView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeSettings.CalendarView 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
-
-