Class TableIndex
- java.lang.Object
-
- mil.nga.geopackage.extension.nga.index.TableIndex
-
public class TableIndex extends Object
Table Index object, for indexing data within user tables- Since:
- 1.1.0
- Author:
- osbornb
-
-
Field Summary
Fields Modifier and Type Field Description static String
COLUMN_LAST_INDEXED
Last indexed columnstatic String
COLUMN_TABLE_NAME
tableName field namestatic String
TABLE_NAME
Table name
-
Constructor Summary
Constructors Constructor Description TableIndex()
Default ConstructorTableIndex(TableIndex tableIndex)
Copy Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ForeignCollection<GeometryIndex>
getGeometryIndices()
Get the Geometry IndicesDate
getLastIndexed()
Get the last indexed dateString
getTableName()
Get the table namevoid
setLastIndexed(Date lastIndexed)
Set the last indexed datevoid
setTableName(String tableName)
Set the table name
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
Table name- See Also:
- Constant Field Values
-
COLUMN_TABLE_NAME
public static final String COLUMN_TABLE_NAME
tableName field name- See Also:
- Constant Field Values
-
COLUMN_LAST_INDEXED
public static final String COLUMN_LAST_INDEXED
Last indexed column- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TableIndex
public TableIndex()
Default Constructor
-
TableIndex
public TableIndex(TableIndex tableIndex)
Copy Constructor- Parameters:
tableIndex
- table index to copy- Since:
- 1.3.0
-
-
Method Detail
-
getTableName
public String getTableName()
Get the table name- Returns:
- table name
-
setTableName
public void setTableName(String tableName)
Set the table name- Parameters:
tableName
- table name
-
getLastIndexed
public Date getLastIndexed()
Get the last indexed date- Returns:
- last indexed date
-
setLastIndexed
public void setLastIndexed(Date lastIndexed)
Set the last indexed date- Parameters:
lastIndexed
- last indexed date
-
getGeometryIndices
public ForeignCollection<GeometryIndex> getGeometryIndices()
Get the Geometry Indices- Returns:
- collection of geometry indices
-
-