Class VectorTilesLayers
- java.lang.Object
-
- mil.nga.geopackage.extension.im.vector_tiles.VectorTilesLayers
-
public class VectorTilesLayers extends Object
Describes the layers in a vector tiles set- Since:
- 4.0.0
- Author:
- jyutzler
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLUMN_ATTRIBUTES_TABLE_NAMEstatic StringCOLUMN_DESCRIPTIONstatic StringCOLUMN_IDstatic StringCOLUMN_MAXZOOMstatic StringCOLUMN_MINZOOMstatic StringCOLUMN_NAMEstatic StringCOLUMN_TABLE_NAMEstatic StringTABLE_NAME
-
Constructor Summary
Constructors Constructor Description VectorTilesLayers()VectorTilesLayers(long id, String tableName, String name, String description, long minZoom, long maxZoom, String attributesTableName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttributesTableName()StringgetDescription()longgetId()longgetMaxZoom()longgetMinZoom()StringgetName()StringgetTableName()voidresetId()Reset the id so the row can be inserted as newvoidsetAttributesTableName(String attributesTableName)voidsetDescription(String description)voidsetId(long id)voidsetMaxZoom(long maxZoom)voidsetMinZoom(long minZoom)voidsetName(String name)voidsetTableName(String tableName)
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
- See Also:
- Constant Field Values
-
COLUMN_ID
public static final String COLUMN_ID
- See Also:
- Constant Field Values
-
COLUMN_TABLE_NAME
public static final String COLUMN_TABLE_NAME
- See Also:
- Constant Field Values
-
COLUMN_NAME
public static final String COLUMN_NAME
- See Also:
- Constant Field Values
-
COLUMN_DESCRIPTION
public static final String COLUMN_DESCRIPTION
- See Also:
- Constant Field Values
-
COLUMN_MINZOOM
public static final String COLUMN_MINZOOM
- See Also:
- Constant Field Values
-
COLUMN_MAXZOOM
public static final String COLUMN_MAXZOOM
- See Also:
- Constant Field Values
-
COLUMN_ATTRIBUTES_TABLE_NAME
public static final String COLUMN_ATTRIBUTES_TABLE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
resetId
public void resetId()
Reset the id so the row can be inserted as new
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String tableName)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getMinZoom
public long getMinZoom()
-
setMinZoom
public void setMinZoom(long minZoom)
-
getMaxZoom
public long getMaxZoom()
-
setMaxZoom
public void setMaxZoom(long maxZoom)
-
getAttributesTableName
public String getAttributesTableName()
-
setAttributesTableName
public void setAttributesTableName(String attributesTableName)
-
-