public class RelationParameters
extends com.google.gwt.core.client.JavaScriptObject
Modifier and Type | Class and Description |
---|---|
static class |
RelationParameters.SpatialRelationType |
Modifier and Type | Method and Description |
---|---|
static RelationParameters |
create()
Creates a new RelationParameter object.
|
com.google.gwt.core.client.JsArray<Geometry> |
getGeometries1()
The first array of geometries to compute the relations.
|
com.google.gwt.core.client.JsArray<Geometry> |
getGeometries2()
The second array of geometries to compute the relations.
|
RelationParameters.SpatialRelationType |
getRelation()
The spatial relationship to be tested between the two input geometry arrays.
|
java.lang.String |
getRelationParam()
The 'Shape Comparison Language' string to evaluate.
|
void |
setGeometries1(Geometry[] geometries)
Set the geometries1 parameter.
|
void |
setGeometries2(Geometry[] geometries)
Set the geometries2 parameter.
|
void |
setRelation(RelationParameters.SpatialRelationType relation)
Set the relation parameter.
|
void |
setRelationParam(java.lang.String relationParam)
Set the relation parameter.
|
public static RelationParameters create()
public final com.google.gwt.core.client.JsArray<Geometry> getGeometries1()
public final void setGeometries1(Geometry[] geometries)
geometries
- - The first array of geometries to compute the relations. The structure of each geometry
in the array is same as the structure of the json geometry objects returned by the ArcGIS REST API.public final com.google.gwt.core.client.JsArray<Geometry> getGeometries2()
public final void setGeometries2(Geometry[] geometries)
geometries
- - The second array of geometries to compute the relations. The structure of each geometry
in the array is same as the structure of the json geometry objects returned by the ArcGIS REST API.public final RelationParameters.SpatialRelationType getRelation()
public final void setRelation(RelationParameters.SpatialRelationType relation)
relation
- - The spatial relationship to be tested between the two input geometry arrays. If the
relation is specified as SPATIAL_REL_RELATION, the relationParam parameter describes the spatial
relationship and must be specified.public final java.lang.String getRelationParam()
public final void setRelationParam(java.lang.String relationParam)
relationParam
- - The 'Shape Comparison Language' string to evaluate.