Class DataStoreLayer
- java.lang.Object
-
- com.vividsolutions.jump.datastore.DataStoreLayer
-
public class DataStoreLayer extends Object
Metadata about a Datastore geo layer: a dataset name with a geo column (one table with several geo columns generates several DataStoreLayers, one for each geo column
-
-
Constructor Summary
Constructors Constructor Description DataStoreLayer(String fName, GeometryColumn geoCol)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFullName()GeometryColumngetGeoCol()intgetLimit()StringgetName()StringgetSchema()StringgetWhere()StringgetWhereClause()Returns the where clause with WHERE keyword removedBooleanisCaching()voidsetCaching(Boolean caching)voidsetGeoCol(GeometryColumn geoCol)voidsetLimit(int limit)voidsetName(String name)voidsetSchema(String schema)voidsetWhere(String where)StringtoString()
-
-
-
Constructor Detail
-
DataStoreLayer
public DataStoreLayer(String fName, GeometryColumn geoCol)
-
-
Method Detail
-
getName
public String getName()
-
getFullName
public String getFullName()
-
setName
public void setName(String name)
-
getGeoCol
public GeometryColumn getGeoCol()
-
setGeoCol
public void setGeoCol(GeometryColumn geoCol)
-
getWhere
public String getWhere()
-
getWhereClause
public String getWhereClause()
Returns the where clause with WHERE keyword removed- Returns:
- the where clause String without the "where" keyword
-
setWhere
public void setWhere(String where)
-
getLimit
public int getLimit()
-
setLimit
public void setLimit(int limit)
-
isCaching
public Boolean isCaching()
-
setCaching
public void setCaching(Boolean caching)
-
getSchema
public String getSchema()
-
setSchema
public void setSchema(String schema)
-
-