public static enum LineElement.LineType extends java.lang.Enum<LineElement.LineType>
Enum Constant and Description |
---|
CASING
A casing (line behind normal line, extended to the right/left)
|
LEFT_CASING
A casing, but only to the left
|
NORMAL
A normal line
|
RIGHT_CASING
A casing, but only to the right
|
Modifier and Type | Field and Description |
---|---|
float |
defaultMajorZIndex
The major z index to use during painting
|
java.lang.String |
prefix
The MapCSS line prefix used
|
Modifier and Type | Method and Description |
---|---|
static LineElement.LineType |
valueOf(java.lang.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 java.lang.String prefix
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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null