public enum CalendarColor extends java.lang.Enum<CalendarColor>
Enum Constant and Description |
---|
AUTO
auto
|
LIGHT_BLUE
light Blue
|
LIGHT_BROWN
light Brown
|
LIGHT_GRAY
light Gray
|
LIGHT_GREEN
light Green
|
LIGHT_ORANGE
light Orange
|
LIGHT_PINK
light Pink
|
LIGHT_RED
light Red
|
LIGHT_TEAL
light Teal
|
LIGHT_YELLOW
light Yellow
|
MAX_COLOR
max Color
|
UNEXPECTED_VALUE
For CalendarColor values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static CalendarColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarColor AUTO
public static final CalendarColor LIGHT_BLUE
public static final CalendarColor LIGHT_GREEN
public static final CalendarColor LIGHT_ORANGE
public static final CalendarColor LIGHT_GRAY
public static final CalendarColor LIGHT_YELLOW
public static final CalendarColor LIGHT_TEAL
public static final CalendarColor LIGHT_PINK
public static final CalendarColor LIGHT_BROWN
public static final CalendarColor LIGHT_RED
public static final CalendarColor MAX_COLOR
public static final CalendarColor UNEXPECTED_VALUE
public static CalendarColor[] values()
for (CalendarColor c : CalendarColor.values()) System.out.println(c);
public static CalendarColor 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