Package odata.msgraph.client.beta.enums
Enum CategoryColor
- java.lang.Object
-
- java.lang.Enum<CategoryColor>
-
- odata.msgraph.client.beta.enums.CategoryColor
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<CategoryColor>
public enum CategoryColor extends Enum<CategoryColor> implements com.github.davidmoten.odata.client.Enum
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static CategoryColorvalueOf(String name)Returns the enum constant of this type with the specified name.static CategoryColor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CategoryColor NONE
-
PRESET0
public static final CategoryColor PRESET0
-
PRESET1
public static final CategoryColor PRESET1
-
PRESET2
public static final CategoryColor PRESET2
-
PRESET3
public static final CategoryColor PRESET3
-
PRESET4
public static final CategoryColor PRESET4
-
PRESET5
public static final CategoryColor PRESET5
-
PRESET6
public static final CategoryColor PRESET6
-
PRESET7
public static final CategoryColor PRESET7
-
PRESET8
public static final CategoryColor PRESET8
-
PRESET9
public static final CategoryColor PRESET9
-
PRESET10
public static final CategoryColor PRESET10
-
PRESET11
public static final CategoryColor PRESET11
-
PRESET12
public static final CategoryColor PRESET12
-
PRESET13
public static final CategoryColor PRESET13
-
PRESET14
public static final CategoryColor PRESET14
-
PRESET15
public static final CategoryColor PRESET15
-
PRESET16
public static final CategoryColor PRESET16
-
PRESET17
public static final CategoryColor PRESET17
-
PRESET18
public static final CategoryColor PRESET18
-
PRESET19
public static final CategoryColor PRESET19
-
PRESET20
public static final CategoryColor PRESET20
-
PRESET21
public static final CategoryColor PRESET21
-
PRESET22
public static final CategoryColor PRESET22
-
PRESET23
public static final CategoryColor PRESET23
-
PRESET24
public static final CategoryColor PRESET24
-
-
Method Detail
-
values
public static CategoryColor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CategoryColor c : CategoryColor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CategoryColor valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-