public static final enum

Geometry.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.esri.core.geometry.Geometry.Type

Class Overview

The type of this geometry.

Summary

Enum Values
Geometry.Type  ENVELOPE  The value representing an envelope as geometry type. 
Geometry.Type  LINE  The value representing a line as geometry type. 
Geometry.Type  MULTIPOINT  The value representing a multipoint as geometry type. 
Geometry.Type  POINT  The value representing a point as geometry type. 
Geometry.Type  POLYGON  The value representing a polygon as geometry type. 
Geometry.Type  POLYLINE  The value representing a polyline as geometry type. 
Geometry.Type  UNKNOWN  Used to indicate that the geometry type is not known before executing a method. 
Public Methods
int value()
Returns the integer representation of the enumeration value.
static Geometry.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Geometry.Type ENVELOPE

The value representing an envelope as geometry type.

public static final Geometry.Type LINE

The value representing a line as geometry type.

public static final Geometry.Type MULTIPOINT

The value representing a multipoint as geometry type.

public static final Geometry.Type POINT

The value representing a point as geometry type.

public static final Geometry.Type POLYGON

The value representing a polygon as geometry type.

public static final Geometry.Type POLYLINE

The value representing a polyline as geometry type.

public static final Geometry.Type UNKNOWN

Used to indicate that the geometry type is not known before executing a method.

Public Methods

public int value ()

Returns the integer representation of the enumeration value.

public static Geometry.Type valueOf (String name)

public static final Type[] values ()