Package org.geotools.geopkg
Class Entry
- Object
-
- Entry
-
- Direct Known Subclasses:
FeatureEntry
,TileEntry
public class Entry extends Object
Entry in a geopackage.This class corresponds to the "geopackage_contents" table.
- Author:
- Justin Deoliveira, OpenGeo
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Entry.DataType
-
Field Summary
Fields Modifier and Type Field Description protected ReferencedEnvelope
bounds
protected Entry.DataType
dataType
protected String
description
protected String
identifier
protected Date
lastChange
protected Integer
srid
protected String
tableName
-
Constructor Summary
Constructors Constructor Description Entry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReferencedEnvelope
getBounds()
Entry.DataType
getDataType()
String
getDescription()
String
getIdentifier()
Date
getLastChange()
Integer
getSrid()
String
getTableName()
void
setBounds(ReferencedEnvelope bounds)
void
setDataType(Entry.DataType dataType)
void
setDescription(String description)
void
setIdentifier(String identifier)
void
setLastChange(Date lastChange)
void
setSrid(Integer srid)
void
setTableName(String tableName)
-
-
-
Field Detail
-
tableName
protected String tableName
-
dataType
protected Entry.DataType dataType
-
identifier
protected String identifier
-
description
protected String description
-
lastChange
protected Date lastChange
-
bounds
protected ReferencedEnvelope bounds
-
srid
protected Integer srid
-
-
Method Detail
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String tableName)
-
getDataType
public Entry.DataType getDataType()
-
setDataType
public void setDataType(Entry.DataType dataType)
-
getIdentifier
public String getIdentifier()
-
setIdentifier
public void setIdentifier(String identifier)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getLastChange
public Date getLastChange()
-
setLastChange
public void setLastChange(Date lastChange)
-
getBounds
public ReferencedEnvelope getBounds()
-
setBounds
public void setBounds(ReferencedEnvelope bounds)
-
getSrid
public Integer getSrid()
-
setSrid
public void setSrid(Integer srid)
-
-