Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.data
Enum Class QueryParameters.SpatialRelationship
java.lang.Object
java.lang.Enum<QueryParameters.SpatialRelationship>
com.esri.arcgisruntime.data.QueryParameters.SpatialRelationship
- All Implemented Interfaces:
Serializable
,Comparable<QueryParameters.SpatialRelationship>
,Constable
- Enclosing class:
QueryParameters
public static enum QueryParameters.SpatialRelationship
extends Enum<QueryParameters.SpatialRelationship>
Defines the spatial relationship between the
geometry
set on QueryParameters and the geometry of a feature table's feature.- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionContains operator.Crosses operator.Disjoint operator.Enveloper intersects operator.Equals operator.Index intersects operator.Intersects operator.Overlaps operator.Relate operator.Touches operator.An unknown value.Within operator. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static QueryParameters.SpatialRelationship[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
An unknown value. Normally, the result when an error occurs. -
RELATE
Relate operator. -
EQUALS
Equals operator. -
DISJOINT
Disjoint operator. -
INTERSECTS
Intersects operator. -
TOUCHES
Touches operator. -
CROSSES
Crosses operator. -
WITHIN
Within operator. -
CONTAINS
Contains operator. -
OVERLAPS
Overlaps operator. -
ENVELOPE_INTERSECTS
Enveloper intersects operator. -
INDEX_INTERSECTS
Index intersects operator.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-