com.esri.core.tasks
Enum SpatialRelationship
java.lang.Object
java.lang.Enum<SpatialRelationship>
com.esri.core.tasks.SpatialRelationship
- All Implemented Interfaces:
- Serializable, Comparable<SpatialRelationship>
public enum SpatialRelationship
- extends Enum<SpatialRelationship>
Enumeration of spatial relationship
- Since:
- 1.0
INTERSECTS
public static final SpatialRelationship INTERSECTS
CONTAINS
public static final SpatialRelationship CONTAINS
CROSSES
public static final SpatialRelationship CROSSES
ENVELOPE_INTERSECTS
public static final SpatialRelationship ENVELOPE_INTERSECTS
INDEX_INTERSECTS
public static final SpatialRelationship INDEX_INTERSECTS
OVERLAPS
public static final SpatialRelationship OVERLAPS
TOUCHES
public static final SpatialRelationship TOUCHES
WITHIN
public static final SpatialRelationship WITHIN
values
public static SpatialRelationship[] 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 (SpatialRelationship c : SpatialRelationship.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SpatialRelationship 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
getValue
public String getValue()
- Gets the value.
- Returns:
- the value
- Since:
- 1.0
toString
public String toString()
- Overrides:
toString
in class Enum<SpatialRelationship>
Copyright © 2012. All Rights Reserved.