|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<GeometryType>
org.xith3d.scenegraph.primitives.GeometryType
public enum GeometryType
An enumeration of Geometry types, that can be created by shape implementations.
| Enum Constant Summary | |
|---|---|
INDEXED_TRIANGLE_ARRAY
|
|
INDEXED_TRIANGLE_STRIP_ARRAY
|
|
TRIANGLE_ARRAY
|
|
TRIANGLE_STRIP_ARRAY
|
|
| Field Summary | |
|---|---|
static GeometryType |
ITA
An alias for INDEXED_TRIANGLE_ARRAY. |
static GeometryType |
ITSA
An alias for INDEXED_TRIANGLE_STRIP_ARRAY. |
static GeometryType |
TA
An alias for TRIANGLE_ARRAY. |
static GeometryType |
TSA
An alias for TRIANGLE_STRIP_ARRAY. |
| Method Summary | |
|---|---|
java.lang.Class<? extends GeometryArray> |
getCorrespondingClass()
|
static GeometryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GeometryType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final GeometryType TRIANGLE_ARRAY
public static final GeometryType TRIANGLE_STRIP_ARRAY
public static final GeometryType INDEXED_TRIANGLE_ARRAY
public static final GeometryType INDEXED_TRIANGLE_STRIP_ARRAY
| Field Detail |
|---|
public static final GeometryType TA
public static final GeometryType TSA
public static final GeometryType ITA
public static final GeometryType ITSA
| Method Detail |
|---|
public static GeometryType[] values()
for (GeometryType c : GeometryType.values()) System.out.println(c);
public static GeometryType 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.Class<? extends GeometryArray> getCorrespondingClass()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||