public enum CalendarCellType extends Enum<CalendarCellType>
CalendarCell
.Enum Constant and Description |
---|
Date
A Calendar Cell which visualizes a date.
|
DayName
A Calendar Cell which visualizes day names.
|
Title
A Calendar Cell which visualizes titles.
|
WeekNumber
A Calendar Cell which visualizes the number of the week.
|
Modifier and Type | Method and Description |
---|---|
static CalendarCellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarCellType Date
public static final CalendarCellType WeekNumber
public static final CalendarCellType DayName
public static final CalendarCellType Title
public static CalendarCellType[] values()
for (CalendarCellType c : CalendarCellType.values()) System.out.println(c);
public static CalendarCellType 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 null