|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SpatialReference.Type>
com.esri.core.geometry.SpatialReference.Type
public static enum SpatialReference.Type
The spatial reference type can be local, geographic, or projected.
Enum Constant Summary | |
---|---|
GEOGRAPHIC
Geographic Coordinate System |
|
LOCAL
Local coordinate system (also known as Unknown coordinate system) |
|
PROJECTED
Projected Coordinate System |
Method Summary | |
---|---|
static SpatialReference.Type |
fromCode(int code)
|
static int |
toCode(SpatialReference.Type type)
|
static SpatialReference.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SpatialReference.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 SpatialReference.Type LOCAL
public static final SpatialReference.Type GEOGRAPHIC
public static final SpatialReference.Type PROJECTED
Method Detail |
---|
public static SpatialReference.Type[] values()
for (SpatialReference.Type c : SpatialReference.Type.values()) System.out.println(c);
public static SpatialReference.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 static SpatialReference.Type fromCode(int code)
public static int toCode(SpatialReference.Type type)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |