public enum TSRRenderMode extends java.lang.Enum<TSRRenderMode>
Enum Constant and Description |
---|
LineList |
LinePathList |
LineStrip |
Points |
QuadPatchList |
TriangleFan |
Triangles |
TriangleStrip |
TriPatchList |
Modifier and Type | Method and Description |
---|---|
static TSRRenderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TSRRenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TSRRenderMode Triangles
public static final TSRRenderMode TriangleFan
public static final TSRRenderMode TriangleStrip
public static final TSRRenderMode LineStrip
public static final TSRRenderMode LineList
public static final TSRRenderMode Points
public static final TSRRenderMode LinePathList
public static final TSRRenderMode TriPatchList
public static final TSRRenderMode QuadPatchList
public static TSRRenderMode[] values()
for (TSRRenderMode c : TSRRenderMode.values()) System.out.println(c);
public static TSRRenderMode 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