public enum AuxLineColor extends Enum<AuxLineColor>
Enum Constant and Description |
---|
BLACK |
BLUE |
DARK_GREEN |
DARK_RED |
GRAY |
GREEN |
LIGHT_BLUE |
LIGHT_GREEN |
LIGHT_RED |
ORANGE |
RED |
YELLOW |
Modifier and Type | Method and 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.
|
public static final AuxLineColor RED
public static final AuxLineColor GREEN
public static final AuxLineColor BLUE
public static final AuxLineColor BLACK
public static final AuxLineColor DARK_RED
public static final AuxLineColor LIGHT_RED
public static final AuxLineColor DARK_GREEN
public static final AuxLineColor LIGHT_GREEN
public static final AuxLineColor LIGHT_BLUE
public static final AuxLineColor ORANGE
public static final AuxLineColor YELLOW
public static final AuxLineColor GRAY
public static AuxLineColor[] values()
for (AuxLineColor c : AuxLineColor.values()) System.out.println(c);
public static AuxLineColor 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 color()
Copyright © 2019. All rights reserved.