Package net.troja.eve.esi.model
Enum MailLabelSimple.ColorEnum
- java.lang.Object
-
- java.lang.Enum<MailLabelSimple.ColorEnum>
-
- net.troja.eve.esi.model.MailLabelSimple.ColorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MailLabelSimple.ColorEnum>
- Enclosing class:
- MailLabelSimple
public static enum MailLabelSimple.ColorEnum extends Enum<MailLabelSimple.ColorEnum>
Hexadecimal string representing label color, in RGB format
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMailLabelSimple.ColorEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MailLabelSimple.ColorEnumfromValue(String value)StringgetValue()StringtoString()static MailLabelSimple.ColorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MailLabelSimple.ColorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_0000FE
public static final MailLabelSimple.ColorEnum _0000FE
-
_006634
public static final MailLabelSimple.ColorEnum _006634
-
_0099FF
public static final MailLabelSimple.ColorEnum _0099FF
-
_00FF33
public static final MailLabelSimple.ColorEnum _00FF33
-
_01FFFF
public static final MailLabelSimple.ColorEnum _01FFFF
-
_349800
public static final MailLabelSimple.ColorEnum _349800
-
_660066
public static final MailLabelSimple.ColorEnum _660066
-
_666666
public static final MailLabelSimple.ColorEnum _666666
-
_999999
public static final MailLabelSimple.ColorEnum _999999
-
_99FFFF
public static final MailLabelSimple.ColorEnum _99FFFF
-
_9A0000
public static final MailLabelSimple.ColorEnum _9A0000
-
CCFF9A
public static final MailLabelSimple.ColorEnum CCFF9A
-
E6E6E6
public static final MailLabelSimple.ColorEnum E6E6E6
-
FE0000
public static final MailLabelSimple.ColorEnum FE0000
-
FF6600
public static final MailLabelSimple.ColorEnum FF6600
-
FFFF01
public static final MailLabelSimple.ColorEnum FFFF01
-
FFFFCD
public static final MailLabelSimple.ColorEnum FFFFCD
-
FFFFFF
public static final MailLabelSimple.ColorEnum FFFFFF
-
-
Method Detail
-
values
public static MailLabelSimple.ColorEnum[] 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 (MailLabelSimple.ColorEnum c : MailLabelSimple.ColorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MailLabelSimple.ColorEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<MailLabelSimple.ColorEnum>
-
fromValue
public static MailLabelSimple.ColorEnum fromValue(String value)
-
-