public enum MonthCellLayout extends java.lang.Enum<MonthCellLayout>
SingleMonth
and MonthRange
views.Enum Constant and Description |
---|
Grid
Indicates that the cells are laid out in a grid, where
each row in the grid contains the days of a single week.
|
Linear
Indicates that the cells are laid out in a single line.
|
Modifier and Type | Method and Description |
---|---|
static MonthCellLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MonthCellLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonthCellLayout Linear
public static final MonthCellLayout Grid
public static MonthCellLayout[] values()
for (MonthCellLayout c : MonthCellLayout.values()) System.out.println(c);
public static MonthCellLayout 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