public static enum TimeSettings.CalendarView extends java.lang.Enum<TimeSettings.CalendarView>
Enum Constant and Description |
---|
PERIOD_VIEW
Period view.
|
WEEKS_HORIZONTALLY
Show weeks horizontally.
|
WEEKS_VERTICALLY
Show weeks vertically.
|
Modifier and Type | Method and 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.
|
public static final TimeSettings.CalendarView WEEKS_VERTICALLY
public static final TimeSettings.CalendarView WEEKS_HORIZONTALLY
public static final TimeSettings.CalendarView PERIOD_VIEW
public static TimeSettings.CalendarView[] values()
for (TimeSettings.CalendarView c : TimeSettings.CalendarView.values()) System.out.println(c);
public static TimeSettings.CalendarView valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null