public enum WeekNumbersDisplayMode extends Enum<WeekNumbersDisplayMode>
RadCalendarView
.Enum Constant and Description |
---|
Block
The week numbers will be presented in a separate cell.
|
Inline
The week numbers will be presented as part of the first cell of each week.
|
None
The week numbers will not be visualized.
|
Modifier and Type | Method and Description |
---|---|
static WeekNumbersDisplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeekNumbersDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeekNumbersDisplayMode None
public static final WeekNumbersDisplayMode Inline
public static final WeekNumbersDisplayMode Block
public static WeekNumbersDisplayMode[] values()
for (WeekNumbersDisplayMode c : WeekNumbersDisplayMode.values()) System.out.println(c);
public static WeekNumbersDisplayMode 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