public static enum DayRenderer.Status extends java.lang.Enum<DayRenderer.Status>
Enum Constant | Description |
---|---|
CURRENT |
Status fuer den aktuellen Tag.
|
NORMAL |
Status fuer einen beliebigen Tag des Monats.
|
OFF |
Status fuer: Tag befindet sich nicht im aktuellen Monat.
|
Modifier and Type | Method | Description |
---|---|---|
static DayRenderer.Status |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DayRenderer.Status[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DayRenderer.Status CURRENT
public static final DayRenderer.Status NORMAL
public static final DayRenderer.Status OFF
public static DayRenderer.Status[] values()
for (DayRenderer.Status c : DayRenderer.Status.values()) System.out.println(c);
public static DayRenderer.Status 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