Class FilterQuery
- java.lang.Object
-
- com.vividsolutions.jump.datastore.FilterQuery
-
- All Implemented Interfaces:
Query
public class FilterQuery extends Object implements Query
A spatial filterQuery
on aDataStoreConnection
.
-
-
Constructor Summary
Constructors Constructor Description FilterQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCondition()
String
getDatasetName()
org.locationtech.jts.geom.Geometry
getFilterGeometry()
String
getGeometryAttributeName()
int
getLimit()
String
getPrimaryKey()
String[]
getPropertyNames()
SpatialReferenceSystemID
getSRSName()
void
setCondition(String condition)
void
setDatasetName(String datasetName)
void
setFilterGeometry(org.locationtech.jts.geom.Geometry geom)
void
setGeometryAttributeName(String geomAttrName)
void
setLimit(int limit)
void
setPrimaryKey(String primaryKey)
void
setPropertyNames(String[] propertyNames)
void
setSRSName(SpatialReferenceSystemID srid)
Sets the SpatialReferenceSystem for a query.
-
-
-
Method Detail
-
setDatasetName
public void setDatasetName(String datasetName)
-
getDatasetName
public String getDatasetName()
-
setPropertyNames
public void setPropertyNames(String[] propertyNames)
-
getPropertyNames
public String[] getPropertyNames()
-
setFilterGeometry
public void setFilterGeometry(org.locationtech.jts.geom.Geometry geom)
-
getFilterGeometry
public org.locationtech.jts.geom.Geometry getFilterGeometry()
-
setCondition
public void setCondition(String condition)
-
getCondition
public String getCondition()
-
setLimit
public void setLimit(int limit)
-
getLimit
public int getLimit()
-
setGeometryAttributeName
public void setGeometryAttributeName(String geomAttrName)
-
getGeometryAttributeName
public String getGeometryAttributeName()
-
setPrimaryKey
public void setPrimaryKey(String primaryKey)
-
getPrimaryKey
public String getPrimaryKey()
-
setSRSName
public void setSRSName(SpatialReferenceSystemID srid)
Sets the SpatialReferenceSystem for a query. This is optional; whether it is required depends on the datastore implemention. Datastore drivers may set this themselves and override any user settings.- Parameters:
srid
- the SpatialReferenceSystem ID
-
getSRSName
public SpatialReferenceSystemID getSRSName()
-
-