Class VectorTilesFields
- java.lang.Object
-
- mil.nga.geopackage.extension.im.vector_tiles.VectorTilesFields
-
public class VectorTilesFields extends Object
Describes the fields in a vector tiles set- Since:
- 4.0.0
- Author:
- jyutzler
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLUMN_IDstatic StringCOLUMN_LAYER_IDstatic StringCOLUMN_NAMEstatic StringCOLUMN_TYPEstatic StringTABLE_NAME
-
Constructor Summary
Constructors Constructor Description VectorTilesFields()VectorTilesFields(long id, long layerId, String name, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetId()longgetLayerId()StringgetName()StringgetType()voidresetId()Reset the id so the row can be inserted as newvoidsetId(long id)voidsetLayerId(long layerId)voidsetName(String name)voidsetType(String type)
-
-
-
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_LAYER_ID
public static final String COLUMN_LAYER_ID
- See Also:
- Constant Field Values
-
COLUMN_NAME
public static final String COLUMN_NAME
- See Also:
- Constant Field Values
-
COLUMN_TYPE
public static final String COLUMN_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
resetId
public void resetId()
Reset the id so the row can be inserted as new
-
getId
public long getId()
-
setId
public void setId(long id)
-
getLayerId
public long getLayerId()
-
setLayerId
public void setLayerId(long layerId)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public String getType()
-
setType
public void setType(String type)
-
-