public static enum Geometry.FillDrawingMode extends java.lang.Enum<Geometry.FillDrawingMode>
Enum Constant and Description |
---|
NONE
Nothing is filled.
|
TRIANGLE_FAN
Draws a connected group of triangles with common first element.
|
TRIANGLE_STRIP
Draws a connected group of triangles.
|
TRIANGLES
Treats each triplet of vertices as an independent triangle.
|
Modifier and Type | Method and Description |
---|---|
static Geometry.FillDrawingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Geometry.FillDrawingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry.FillDrawingMode TRIANGLES
public static final Geometry.FillDrawingMode TRIANGLE_STRIP
public static final Geometry.FillDrawingMode TRIANGLE_FAN
public static final Geometry.FillDrawingMode NONE
public static Geometry.FillDrawingMode[] values()
for (Geometry.FillDrawingMode c : Geometry.FillDrawingMode.values()) System.out.println(c);
public static Geometry.FillDrawingMode 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