public enum OsmLineType extends java.lang.Enum<OsmLineType>
Enum Constant and Description |
---|
DASH_DOT_STROKE
AWT Stroke for a 1-pixel-wide line of alternating dots and dashes.
|
DASHED_STROKE
AWT Stroke for a dashed (6 pixels long) line 1 pixel wide.
|
DOTTED_STROKE
AWT Stroke for a dotted line 1 pixel wide.
|
DW_SOLID_STROKE
AWT Stroke for a 4-pixel-wide solid line.
|
LONG_DOTTED_STROKE
AWT Stroke for a 1-pixel-wide line with long dots (3 pixels long).
|
PIPELINE_STROKE
The default stroke for drawing a pipeline.
|
RAILROAD_STROKE
The default stroke for drawing a railroad track Way.
|
SOLID_STROKE
AWT Stroke for a solid line 1 pixel wide.
|
W_SOLID_STROKE
AWT Stroke for a 2-pixel-wide solid line.
|
Modifier and Type | Method and Description |
---|---|
static OsmLineType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OsmLineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OsmLineType SOLID_STROKE
public static final OsmLineType DASHED_STROKE
public static final OsmLineType DOTTED_STROKE
public static final OsmLineType LONG_DOTTED_STROKE
public static final OsmLineType DASH_DOT_STROKE
public static final OsmLineType W_SOLID_STROKE
public static final OsmLineType DW_SOLID_STROKE
public static final OsmLineType RAILROAD_STROKE
public static final OsmLineType PIPELINE_STROKE
public static OsmLineType[] values()
for (OsmLineType c : OsmLineType.values()) System.out.println(c);
public static OsmLineType 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