Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.layers
Enum Class SceneLayerPolygonFilter.SpatialRelationship
java.lang.Object
java.lang.Enum<SceneLayerPolygonFilter.SpatialRelationship>
com.esri.arcgisruntime.layers.SceneLayerPolygonFilter.SpatialRelationship
- All Implemented Interfaces:
Serializable
,Comparable<SceneLayerPolygonFilter.SpatialRelationship>
,Constable
- Enclosing class:
SceneLayerPolygonFilter
public static enum SceneLayerPolygonFilter.SpatialRelationship
extends Enum<SceneLayerPolygonFilter.SpatialRelationship>
The spatial relationships for filtering using polygon geometries.
Specify the spatial relationship to be used with the polygons for filtering features in an ArcGISSceneLayer
.
- Since:
- 200.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISJOINT
Do not draw the features that are within the defined polygon geometries.- Since:
- 200.2.0
-
CONTAINS
Draw the features that are within the specified polygon geometries and do not draw anything that falls outside the polygons.- Since:
- 200.2.0
-
-
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
-