public static enum GeometryBuffer.GeometryType extends java.lang.Enum<GeometryBuffer.GeometryType>
| Modifier and Type | Field and Description |
|---|---|
int |
nativeInt |
| Modifier and Type | Method and Description |
|---|---|
static GeometryBuffer.GeometryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeometryBuffer.GeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryBuffer.GeometryType NONE
public static final GeometryBuffer.GeometryType POINT
public static final GeometryBuffer.GeometryType LINE
public static final GeometryBuffer.GeometryType POLY
public static final GeometryBuffer.GeometryType TRIS
public static GeometryBuffer.GeometryType[] values()
for (GeometryBuffer.GeometryType c : GeometryBuffer.GeometryType.values()) System.out.println(c);
public static GeometryBuffer.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 namejava.lang.NullPointerException - if the argument is null