public enum WeekRangeViewStyle extends java.lang.Enum<WeekRangeViewStyle>
WeekRange
view.Enum Constant and Description |
---|
SingleWeek
The calendar view displays a single week at a time.
|
WeekPerRow
The calendar view displays several weeks at a time.
|
Modifier and Type | Method and Description |
---|---|
static WeekRangeViewStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WeekRangeViewStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeekRangeViewStyle WeekPerRow
public static final WeekRangeViewStyle SingleWeek
public static WeekRangeViewStyle[] values()
for (WeekRangeViewStyle c : WeekRangeViewStyle.values()) System.out.println(c);
public static WeekRangeViewStyle 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