public enum ViewOption extends Enum<ViewOption>
http://arshaw.com/fullcalendar/docs/views/Available_Views/
Enum Constant and Description |
---|
agendaDay |
agendaWeek |
basicDay |
basicWeek |
month |
Modifier and Type | Method and Description |
---|---|
static ViewOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewOption month
public static final ViewOption basicWeek
public static final ViewOption basicDay
public static final ViewOption agendaWeek
public static final ViewOption agendaDay
public static ViewOption[] values()
for (ViewOption c : ViewOption.values()) System.out.println(c);
public static ViewOption valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.