public static enum LineElement.LineType extends Enum<LineElement.LineType>
Enum Constant and Description |
---|
CASING |
LEFT_CASING |
NORMAL |
RIGHT_CASING |
Modifier and Type | Field and Description |
---|---|
float |
defaultMajorZIndex |
String |
prefix |
Modifier and Type | Method and Description |
---|---|
static LineElement.LineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineElement.LineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineElement.LineType NORMAL
public static final LineElement.LineType CASING
public static final LineElement.LineType LEFT_CASING
public static final LineElement.LineType RIGHT_CASING
public final float defaultMajorZIndex
public static LineElement.LineType[] values()
for (LineElement.LineType c : LineElement.LineType.values()) System.out.println(c);
public static LineElement.LineType 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 null