Package com.esri.core.geometry
Enum Operator.Type
- java.lang.Object
-
- java.lang.Enum<Operator.Type>
-
- com.esri.core.geometry.Operator.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Operator.Type>
- Enclosing class:
- Operator
public static enum Operator.Type extends java.lang.Enum<Operator.Type>
The operator type enum.
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
Type()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Operator.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Operator.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Project
public static final Operator.Type Project
-
ExportToJson
public static final Operator.Type ExportToJson
-
ImportFromJson
public static final Operator.Type ImportFromJson
-
ExportToESRIShape
public static final Operator.Type ExportToESRIShape
-
ImportFromESRIShape
public static final Operator.Type ImportFromESRIShape
-
Union
public static final Operator.Type Union
-
Difference
public static final Operator.Type Difference
-
Proximity2D
public static final Operator.Type Proximity2D
-
Centroid2D
public static final Operator.Type Centroid2D
-
Relate
public static final Operator.Type Relate
-
Equals
public static final Operator.Type Equals
-
Disjoint
public static final Operator.Type Disjoint
-
Intersects
public static final Operator.Type Intersects
-
Within
public static final Operator.Type Within
-
Contains
public static final Operator.Type Contains
-
Crosses
public static final Operator.Type Crosses
-
Touches
public static final Operator.Type Touches
-
Overlaps
public static final Operator.Type Overlaps
-
Buffer
public static final Operator.Type Buffer
-
Distance
public static final Operator.Type Distance
-
Intersection
public static final Operator.Type Intersection
-
Clip
public static final Operator.Type Clip
-
Cut
public static final Operator.Type Cut
-
DensifyByLength
public static final Operator.Type DensifyByLength
-
DensifyByAngle
public static final Operator.Type DensifyByAngle
-
LabelPoint
public static final Operator.Type LabelPoint
-
GeodesicBuffer
public static final Operator.Type GeodesicBuffer
-
GeodeticDensifyByLength
public static final Operator.Type GeodeticDensifyByLength
-
ShapePreservingDensify
public static final Operator.Type ShapePreservingDensify
-
GeodeticLength
public static final Operator.Type GeodeticLength
-
GeodeticArea
public static final Operator.Type GeodeticArea
-
Simplify
public static final Operator.Type Simplify
-
SimplifyOGC
public static final Operator.Type SimplifyOGC
-
Offset
public static final Operator.Type Offset
-
Generalize
public static final Operator.Type Generalize
-
ExportToWkb
public static final Operator.Type ExportToWkb
-
ImportFromWkb
public static final Operator.Type ImportFromWkb
-
ExportToWkt
public static final Operator.Type ExportToWkt
-
ImportFromWkt
public static final Operator.Type ImportFromWkt
-
ImportFromGeoJson
public static final Operator.Type ImportFromGeoJson
-
ExportToGeoJson
public static final Operator.Type ExportToGeoJson
-
SymmetricDifference
public static final Operator.Type SymmetricDifference
-
ConvexHull
public static final Operator.Type ConvexHull
-
Boundary
public static final Operator.Type Boundary
-
-
Method Detail
-
values
public static Operator.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 (Operator.Type c : Operator.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 Operator.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-