public enum MonthWeekHeaderStyle extends java.lang.Enum<MonthWeekHeaderStyle>
Enum Constant and Description |
---|
Left
Display the header on the left side of the calendar.
|
None
Do not display a week numbers header.
|
Right
Display the header on the right side of the calendar.
|
Modifier and Type | Method and Description |
---|---|
static MonthWeekHeaderStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MonthWeekHeaderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonthWeekHeaderStyle None
public static final MonthWeekHeaderStyle Left
public static final MonthWeekHeaderStyle Right
public static MonthWeekHeaderStyle[] values()
for (MonthWeekHeaderStyle c : MonthWeekHeaderStyle.values()) System.out.println(c);
public static MonthWeekHeaderStyle 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