public enum CalendarColor extends Enum<CalendarColor> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
AUTO |
LIGHT_BLUE |
LIGHT_BROWN |
LIGHT_GRAY |
LIGHT_GREEN |
LIGHT_ORANGE |
LIGHT_PINK |
LIGHT_RED |
LIGHT_TEAL |
LIGHT_YELLOW |
MAX_COLOR |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static CalendarColor |
valueOf(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 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 AUTO
public static CalendarColor[] values()
for (CalendarColor c : CalendarColor.values()) System.out.println(c);
public static CalendarColor 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 nullpublic String enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.