com.esri.arcgisws
Class EsriGeometryType

java.lang.Object
  extended by java.lang.Enum
      extended by com.esri.arcgisws.EsriGeometryType
All Implemented Interfaces:
Serializable, Comparable

public final class EsriGeometryType
extends Enum

Java class for esriGeometryType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="esriGeometryType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="esriGeometryPoint"/>
     <enumeration value="esriGeometryMultipoint"/>
     <enumeration value="esriGeometryPolyline"/>
     <enumeration value="esriGeometryPolygon"/>
     <enumeration value="esriGeometryMultiPatch"/>
   </restriction>
 </simpleType>
 

See Also:
Serialized Form

Field Summary
static EsriGeometryType esriGeometryMultiPatch
           
static EsriGeometryType esriGeometryMultipoint
           
static EsriGeometryType esriGeometryPoint
           
static EsriGeometryType esriGeometryPolygon
           
static EsriGeometryType esriGeometryPolyline
           
 
Constructor Summary
EsriGeometryType()
           
 
Method Summary
static EsriGeometryType fromString(String value)
          Deprecated. 
static EsriGeometryType fromValue(String v)
           
 String getValue()
           
 String toString()
           
static EsriGeometryType valueOf(String name)
           
static EsriGeometryType[] values()
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

esriGeometryPoint

public static final EsriGeometryType esriGeometryPoint

esriGeometryMultipoint

public static final EsriGeometryType esriGeometryMultipoint

esriGeometryPolyline

public static final EsriGeometryType esriGeometryPolyline

esriGeometryPolygon

public static final EsriGeometryType esriGeometryPolygon

esriGeometryMultiPatch

public static final EsriGeometryType esriGeometryMultiPatch
Constructor Detail

EsriGeometryType

public EsriGeometryType()
Method Detail

values

public static final EsriGeometryType[] values()

valueOf

public static EsriGeometryType valueOf(String name)

getValue

public String getValue()

fromValue

public static EsriGeometryType fromValue(String v)

fromString

@Deprecated
public static EsriGeometryType fromString(String value)
Deprecated. 


toString

public String toString()
Overrides:
toString in class Enum