Package net.pricefx.common.api.chart
Enum AuxLineColor
- Object
-
- Enum<AuxLineColor>
-
- AuxLineColor
-
- All Implemented Interfaces:
Serializable
,Comparable<AuxLineColor>
public enum AuxLineColor extends Enum<AuxLineColor>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLACK
BLUE
DARK_GREEN
DARK_RED
GRAY
GREEN
LIGHT_BLUE
LIGHT_GREEN
LIGHT_RED
ORANGE
RED
YELLOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
color()
static AuxLineColor
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuxLineColor[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RED
public static final AuxLineColor RED
-
GREEN
public static final AuxLineColor GREEN
-
BLUE
public static final AuxLineColor BLUE
-
BLACK
public static final AuxLineColor BLACK
-
DARK_RED
public static final AuxLineColor DARK_RED
-
LIGHT_RED
public static final AuxLineColor LIGHT_RED
-
DARK_GREEN
public static final AuxLineColor DARK_GREEN
-
LIGHT_GREEN
public static final AuxLineColor LIGHT_GREEN
-
LIGHT_BLUE
public static final AuxLineColor LIGHT_BLUE
-
ORANGE
public static final AuxLineColor ORANGE
-
YELLOW
public static final AuxLineColor YELLOW
-
GRAY
public static final AuxLineColor GRAY
-
-
Method Detail
-
values
public static AuxLineColor[] 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 (AuxLineColor c : AuxLineColor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuxLineColor 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
-
color
public String color()
-
-