public static enum Geometry.LineDrawingMode extends java.lang.Enum<Geometry.LineDrawingMode>
Enum Constant and Description |
---|
NONE
No segments.
|
SEGMENTS
Each pair of vertices define an independent segment.
|
SEGMENTS_LOOP
Connected group of segments from the first vertex to the last, then back to the first.
|
SEGMENTS_STRIP
Connected group of segments from the first vertex to the last.
|
Modifier and Type | Method and Description |
---|---|
static Geometry.LineDrawingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Geometry.LineDrawingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry.LineDrawingMode SEGMENTS
public static final Geometry.LineDrawingMode SEGMENTS_STRIP
public static final Geometry.LineDrawingMode SEGMENTS_LOOP
public static final Geometry.LineDrawingMode NONE
public static Geometry.LineDrawingMode[] values()
for (Geometry.LineDrawingMode c : Geometry.LineDrawingMode.values()) System.out.println(c);
public static Geometry.LineDrawingMode 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