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 String
getFullName()
GeometryColumn
getGeoCol()
int
getLimit()
String
getName()
String
getSchema()
String
getWhere()
String
getWhereClause()
Returns the where clause with WHERE keyword removedBoolean
isCaching()
void
setCaching(Boolean caching)
void
setGeoCol(GeometryColumn geoCol)
void
setLimit(int limit)
void
setName(String name)
void
setSchema(String schema)
void
setWhere(String where)
String
toString()
-
-
-
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)
-
-