public enum CalendarCellType extends Enum<CalendarCellType>
| Enum Constant and Description |
|---|
DATE
日期类型的单元格。
|
WEEK
周类型的单元格。
|
WEEKDAY
工作日类型的单元格。
|
| 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.