Class FeatureTileLink
- java.lang.Object
-
- mil.nga.geopackage.extension.nga.link.FeatureTileLink
-
public class FeatureTileLink extends Object
Feature Tile Link object, for linking a feature and tile table together- Since:
- 1.1.5
- Author:
- osbornb
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLUMN_FEATURE_TABLE_NAMEfeatureTableName field namestatic StringCOLUMN_TILE_TABLE_NAMEtileTableName field namestatic StringTABLE_NAMETable name
-
Constructor Summary
Constructors Constructor Description FeatureTileLink()Default ConstructorFeatureTileLink(FeatureTileLink featureTileLink)Copy Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFeatureTableName()Get the feature table nameFeatureTileLinkKeygetId()Get the idStringgetTileTableName()Get the tile table namevoidsetFeatureTableName(String featureTableName)Set the feature table namevoidsetId(FeatureTileLinkKey id)Set the idvoidsetTileTableName(String tileTableName)Set the tile table name
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
Table name- See Also:
- Constant Field Values
-
COLUMN_FEATURE_TABLE_NAME
public static final String COLUMN_FEATURE_TABLE_NAME
featureTableName field name- See Also:
- Constant Field Values
-
COLUMN_TILE_TABLE_NAME
public static final String COLUMN_TILE_TABLE_NAME
tileTableName field name- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FeatureTileLink
public FeatureTileLink()
Default Constructor
-
FeatureTileLink
public FeatureTileLink(FeatureTileLink featureTileLink)
Copy Constructor- Parameters:
featureTileLink- feature tile link to copy- Since:
- 1.3.0
-
-
Method Detail
-
getId
public FeatureTileLinkKey getId()
Get the id- Returns:
- feature tile link key
-
setId
public void setId(FeatureTileLinkKey id)
Set the id- Parameters:
id- id
-
getFeatureTableName
public String getFeatureTableName()
Get the feature table name- Returns:
- feature table name
-
setFeatureTableName
public void setFeatureTableName(String featureTableName)
Set the feature table name- Parameters:
featureTableName- feature table name
-
getTileTableName
public String getTileTableName()
Get the tile table name- Returns:
- tile table name
-
setTileTableName
public void setTileTableName(String tileTableName)
Set the tile table name- Parameters:
tileTableName- tile table name
-
-