public enum CalendarCellType extends Enum<CalendarCellType>
Enum Constant and Description |
---|
DATE
Cell with a date type
|
WEEK
Cell with a week type
|
WEEKDAY
Cell with a weekday type
|
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 WEEKDAY
public static final CalendarCellType WEEK
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 nullCopyright 2009-2012 Micro Focus. All Rights Reserved.