com.esri.core.geometry
Enum SpatialReference.Type

java.lang.Object
  extended by java.lang.Enum<SpatialReference.Type>
      extended by com.esri.core.geometry.SpatialReference.Type
All Implemented Interfaces:
Serializable, Comparable<SpatialReference.Type>
Enclosing class:
SpatialReference

public static enum SpatialReference.Type
extends 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
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Local

public static final SpatialReference.Type Local
Local coordinate system (also known as Unknown coordinate system)


Geographic

public static final SpatialReference.Type Geographic
Geographic Coordinate System


Projected

public static final SpatialReference.Type Projected
Projected Coordinate System

Method Detail

values

public static SpatialReference.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SpatialReference.Type c : SpatialReference.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SpatialReference.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

fromCode

public static SpatialReference.Type fromCode(int code)

toCode

public static int toCode(SpatialReference.Type type)


Copyright © 2012. All Rights Reserved.