|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Geometry.Type>
com.esri.core.geometry.Geometry.Type
public static enum Geometry.Type
The type of this geometry.
Enum Constant Summary | |
---|---|
ENVELOPE
The value representing an envelope as geometry type. |
|
LINE
The value representing a line as geometry type. |
|
MULTIPOINT
The value representing a multipoint as geometry type. |
|
POINT
The value representing a point as geometry type. |
|
POLYGON
The value representing a polygon as geometry type. |
|
POLYLINE
The value representing a polyline as geometry type. |
|
UNKNOWN
Used to indicate that the geometry type is not known before executing a method. |
Method Summary | |
---|---|
int |
value()
Returns the integer representation of the enumeration value. |
static Geometry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Geometry.Type[] |
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 Geometry.Type UNKNOWN
public static final Geometry.Type POINT
public static final Geometry.Type LINE
public static final Geometry.Type ENVELOPE
public static final Geometry.Type MULTIPOINT
public static final Geometry.Type POLYLINE
public static final Geometry.Type POLYGON
Method Detail |
---|
public static Geometry.Type[] values()
for (Geometry.Type c : Geometry.Type.values()) System.out.println(c);
public static Geometry.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int value()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |