public class GeometryMetadata extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
COLUMN_GEOPACKAGE_ID
GeoPackage Id column
|
static String |
COLUMN_ID
Geometry Id column
|
static String |
COLUMN_MAX_M
Max M
|
static String |
COLUMN_MAX_X
Max X
|
static String |
COLUMN_MAX_Y
Max Y
|
static String |
COLUMN_MAX_Z
Max Z
|
static String |
COLUMN_MIN_M
Min M
|
static String |
COLUMN_MIN_X
Min X
|
static String |
COLUMN_MIN_Y
Min Y
|
static String |
COLUMN_MIN_Z
Min Z
|
static String |
COLUMN_TABLE_NAME
Table name column
|
static String[] |
COLUMNS
Columns
|
static String |
CREATE_SQL
Create table SQL
|
long |
geoPackageId
GeoPackage Id
|
long |
id
Geometry id, "foreign key" to a user table
|
Double |
maxM
Max M
|
double |
maxX
Max X
|
double |
maxY
Max Y
|
Double |
maxZ
Max Z
|
Double |
minM
Min M
|
double |
minX
Min X
|
double |
minY
Min Y
|
Double |
minZ
Min Z
|
static String |
TABLE_NAME
Table name
|
String |
tableName
GeoPackage table name
|
| Constructor and Description |
|---|
GeometryMetadata() |
| Modifier and Type | Method and Description |
|---|---|
long |
getGeoPackageId()
Get the GeoPackage id
|
long |
getId()
Get the id
|
Double |
getMaxM()
Get max M
|
double |
getMaxX()
Get max X
|
double |
getMaxY()
Get max Y
|
Double |
getMaxZ()
Get max Z
|
Double |
getMinM()
Get min M
|
double |
getMinX()
Get min X
|
double |
getMinY()
Get min Y
|
Double |
getMinZ()
Get min Z
|
String |
getTableName()
Get the table name
|
void |
setGeoPackageId(long geoPackageId)
Set the GeoPackage id
|
void |
setId(long id)
Set the id
|
void |
setMaxM(Double maxM)
Set max M
|
void |
setMaxX(double maxX)
Set max X
|
void |
setMaxY(double maxY)
Set max Y
|
void |
setMaxZ(Double maxZ)
Set max Z
|
void |
setMinM(Double minM)
Set min M
|
void |
setMinX(double minX)
Set min X
|
void |
setMinY(double minY)
Set min Y
|
void |
setMinZ(Double minZ)
Set min Z
|
void |
setTableName(String tableName)
Set the table name
|
public static final String TABLE_NAME
public static final String COLUMN_GEOPACKAGE_ID
public static final String COLUMN_TABLE_NAME
public static final String COLUMN_ID
public static final String COLUMN_MIN_X
public static final String COLUMN_MAX_X
public static final String COLUMN_MIN_Y
public static final String COLUMN_MAX_Y
public static final String COLUMN_MIN_Z
public static final String COLUMN_MAX_Z
public static final String COLUMN_MIN_M
public static final String COLUMN_MAX_M
public static final String[] COLUMNS
public static final String CREATE_SQL
public long geoPackageId
public String tableName
public long id
public double minX
public double maxX
public double minY
public double maxY
public Double minZ
public Double maxZ
public Double minM
public Double maxM
public long getGeoPackageId()
public void setGeoPackageId(long geoPackageId)
geoPackageId - GeoPackage idpublic String getTableName()
public void setTableName(String tableName)
tableName - table namepublic long getId()
public void setId(long id)
id - idpublic double getMinX()
public void setMinX(double minX)
minX - min xpublic double getMaxX()
public void setMaxX(double maxX)
maxX - max xpublic double getMinY()
public void setMinY(double minY)
minY - min ypublic double getMaxY()
public void setMaxY(double maxY)
maxY - max ypublic Double getMinZ()
public void setMinZ(Double minZ)
minZ - min zpublic Double getMaxZ()
public void setMaxZ(Double maxZ)
maxZ - max zpublic Double getMinM()
public void setMinM(Double minM)
minM - min mpublic Double getMaxM()
public void setMaxM(Double maxM)
maxM - max m