Uses of Class
mil.nga.geopackage.db.GeoPackageCoreConnection
-
-
Uses of GeoPackageCoreConnection in mil.nga.geopackage
Methods in mil.nga.geopackage that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnectionGeoPackageCore. getDatabase()Get the SQLite databaseGeoPackageCoreConnectionGeoPackageCoreImpl. getDatabase()Get the SQLite databaseConstructors in mil.nga.geopackage with parameters of type GeoPackageCoreConnection Constructor Description GeoPackageCoreImpl(String name, String path, GeoPackageCoreConnection database)ConstructorGeoPackageCoreImpl(String name, String path, GeoPackageCoreConnection database, boolean writable)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.contents
Methods in mil.nga.geopackage.contents with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ContentsDaoContentsDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db
Fields in mil.nga.geopackage.db declared as GeoPackageCoreConnection Modifier and Type Field Description protected GeoPackageCoreConnectionGeoPackageDao. dbDatabase connectionMethods in mil.nga.geopackage.db that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnectionGeoPackageDao. getDatabase()Get the databaseMethods in mil.nga.geopackage.db with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static voidAlterTable. addColumn(GeoPackageCoreConnection db, String tableName, String columnName, String columnDef)Add a columnstatic voidCoreSQLUtils. addColumn(GeoPackageCoreConnection db, String tableName, UserColumn column)Create SQL for adding a columnstatic <T extends UserColumn>
voidAlterTable. alterColumn(GeoPackageCoreConnection db, String tableName, UserCustomColumn column)Alter a columnstatic <T extends UserColumn>
voidAlterTable. alterColumn(GeoPackageCoreConnection db, UserTable<T> table, T column)Alter a columnstatic <T extends UserColumn>
voidAlterTable. alterColumns(GeoPackageCoreConnection db, String tableName, Collection<UserCustomColumn> columns)Alter columnsstatic <T extends UserColumn>
voidAlterTable. alterColumns(GeoPackageCoreConnection db, UserTable<T> table, Collection<T> columns)Alter columnsstatic voidAlterTable. alterTable(GeoPackageCoreConnection db, String sql, TableMapping tableMapping)Alter a table with a new table SQL creation statement and table mapping.static voidAlterTable. alterTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> newTable)Alter a table with a new table schema assuming a default table mapping.static voidAlterTable. alterTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> newTable, TableMapping tableMapping)Alter a table with a new table schema and table mapping.static voidAlterTable. copyTable(GeoPackageCoreConnection db, String tableName, String newTableName)Copy the table and row contentstatic voidAlterTable. copyTable(GeoPackageCoreConnection db, String tableName, String newTableName, boolean transferContent)Copy the tablestatic voidAlterTable. copyTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String newTableName)Copy the table and row contentstatic voidAlterTable. copyTable(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String newTableName, boolean transferContent)Copy the tablestatic <D extends GeoPackageDao<O,?>,O>
DGeoPackageDao. createDao(GeoPackageCoreConnection db, DatabaseTableConfig<O> tableConfig)Create a GeoPackage DAOstatic <D extends GeoPackageDao<O,?>,O>
DGeoPackageDao. createDao(GeoPackageCoreConnection db, Class<O> clazz)Create a GeoPackage DAOstatic StringCoreSQLUtils. createName(GeoPackageCoreConnection db, String name, String replace, String replacement)Create a new name by replacing a case insensitive value with a new value.static voidAlterTable. dropColumn(GeoPackageCoreConnection db, String tableName, String columnName)Drop a columnstatic voidAlterTable. dropColumn(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, String columnName)Drop a columnstatic voidAlterTable. dropColumns(GeoPackageCoreConnection db, String tableName, Collection<String> columnNames)Drop columnsstatic voidAlterTable. dropColumns(GeoPackageCoreConnection db, UserTable<? extends UserColumn> table, Collection<String> columnNames)Drop columnsstatic voidCoreSQLUtils. dropTable(GeoPackageCoreConnection db, String tableName)Drop the table if it existsstatic voidCoreSQLUtils. dropView(GeoPackageCoreConnection db, String viewName)Drop the view if it existsstatic List<List<Object>>CoreSQLUtils. foreignKeyCheck(GeoPackageCoreConnection db)Perform a foreign key checkstatic List<List<Object>>CoreSQLUtils. foreignKeyCheck(GeoPackageCoreConnection db, String tableName)Perform a foreign key checkstatic booleanCoreSQLUtils. foreignKeys(GeoPackageCoreConnection db)Query for the foreign keys valuestatic booleanCoreSQLUtils. foreignKeys(GeoPackageCoreConnection db, boolean on)Change the foreign keys statestatic StringCoreSQLUtils. modifySQL(GeoPackageCoreConnection db, String name, String sql, TableMapping tableMapping)Modify the SQL with a name change and the table mapping modificationsstatic voidAlterTable. renameColumn(GeoPackageCoreConnection db, String tableName, String columnName, String newColumnName)Rename a columnstatic voidAlterTable. renameTable(GeoPackageCoreConnection db, String tableName, String newTableName)Rename a tablevoidGeoPackageDao. setDatabase(GeoPackageCoreConnection db)Set the databasestatic StringCoreSQLUtils. tempTableName(GeoPackageCoreConnection db, String prefix, String baseName)Get an available temporary table name.static voidCoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, String tableName, String columnName, Object newColumnValue, Object currentColumnValue)Transfer table content to itself with new rows containing a new column value.static voidCoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, String tableName, String columnName, Object newColumnValue, Object currentColumnValue, String idColumnName)Transfer table content to itself with new rows containing a new column value.static voidCoreSQLUtils. transferTableContent(GeoPackageCoreConnection db, TableMapping tableMapping)Transfer table content from one table to anotherstatic voidCoreSQLUtils. vacuum(GeoPackageCoreConnection db)Rebuild the GeoPackage, repacking it into a minimal amount of disk spaceConstructors in mil.nga.geopackage.db with parameters of type GeoPackageCoreConnection Constructor Description GeoPackageCoreConnection(GeoPackageCoreConnection connection)Copy ConstructorGeoPackageTableCreator(GeoPackageCoreConnection db)ConstructorTableMapping(GeoPackageCoreConnection db, String tableName)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db.master
Methods in mil.nga.geopackage.db.master with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static intSQLiteMaster. count(GeoPackageCoreConnection db)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterQuery query)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType[] types, SQLiteMasterQuery query)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. count(GeoPackageCoreConnection db, SQLiteMasterType type, SQLiteMasterQuery query)Count the sqlite_master tablestatic intSQLiteMaster. countByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)Count the sqlite_master tablestatic intSQLiteMaster. countByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. countByType(GeoPackageCoreConnection db, SQLiteMasterType type)Count the sqlite_master tablestatic intSQLiteMaster. countByType(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)Count the sqlite_master tablestatic intSQLiteMaster. countViewsOnTable(GeoPackageCoreConnection db, String tableName)Count the sqlite_master views on the tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, Collection<SQLiteMasterType> types)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, Collection<SQLiteMasterType> types, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, SQLiteMasterType type)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, SQLiteMasterType type, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterQuery query)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType[] types, SQLiteMasterQuery query)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, SQLiteMasterType type, SQLiteMasterQuery query)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterQuery query)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. query(GeoPackageCoreConnection db, SQLiteMasterType type, SQLiteMasterQuery query)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryByType(GeoPackageCoreConnection db, Collection<SQLiteMasterType> types, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryByType(GeoPackageCoreConnection db, SQLiteMasterType type)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryByType(GeoPackageCoreConnection db, SQLiteMasterType type, String tableName)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryForColumns(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns)Query the sqlite_master tablestatic SQLiteMasterSQLiteMaster. queryForColumns(GeoPackageCoreConnection db, Collection<SQLiteMasterColumn> columns, String tableName)Query the sqlite_master tablestatic TableConstraintsSQLiteMaster. queryForConstraints(GeoPackageCoreConnection db, String tableName)Query for the table constraintsstatic SQLiteMasterSQLiteMaster. queryViewsOnTable(GeoPackageCoreConnection db, String tableName)Query the sqlite_master views on the tablestatic SQLiteMasterSQLiteMaster. queryViewsOnTable(GeoPackageCoreConnection db, SQLiteMasterColumn[] columns, String tableName)Query the sqlite_master views on the table -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.db.table
Methods in mil.nga.geopackage.db.table with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TableInfoTableInfo. info(GeoPackageCoreConnection db, String tableName)Query for the table_info of the table name -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension
Methods in mil.nga.geopackage.extension with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtensionsDaoExtensionsDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.coverage
Methods in mil.nga.geopackage.extension.coverage with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GriddedCoverageDaoGriddedCoverageDao. create(GeoPackageCoreConnection db)Create the DAOstatic GriddedTileDaoGriddedTileDao. create(GeoPackageCoreConnection db)Create the DAOstatic GriddedCoverageDaoCoverageDataCore. getGriddedCoverageDao(GeoPackageCoreConnection db)Get a 2D Gridded Coverage DAOstatic GriddedTileDaoCoverageDataCore. getGriddedTileDao(GeoPackageCoreConnection db)Get a 2D Gridded Tile DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.ecere.tile_matrix_set
Methods in mil.nga.geopackage.extension.ecere.tile_matrix_set with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtTileMatrixDaoExtTileMatrixDao. create(GeoPackageCoreConnection db)Create the DAOstatic ExtTileMatrixSetDaoExtTileMatrixSetDao. create(GeoPackageCoreConnection db)Create the DAOstatic TileMatrixTablesDaoTileMatrixTablesDao. create(GeoPackageCoreConnection db)Create the DAOstatic TileMatrixVariableWidthsDaoTileMatrixVariableWidthsDao. create(GeoPackageCoreConnection db)Create the DAOstatic ExtTileMatrixDaoTileMatrixSetExtension. getTileMatrixDao(GeoPackageCoreConnection db)Get the Tile Matrix DAOstatic ExtTileMatrixSetDaoTileMatrixSetExtension. getTileMatrixSetDao(GeoPackageCoreConnection db)Get the Tile Matrix Set DAOstatic TileMatrixTablesDaoTileMatrixSetExtension. getTileMatrixTablesDao(GeoPackageCoreConnection db)Get the Tile Matrix Tables DAOstatic TileMatrixVariableWidthsDaoTileMatrixSetExtension. getTileMatrixVariableWidthsDao(GeoPackageCoreConnection db)Get the Tile Matrix Variable Widths DAOConstructors in mil.nga.geopackage.extension.ecere.tile_matrix_set with parameters of type GeoPackageCoreConnection Constructor Description TileMatrixSetTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.im.portrayal
Methods in mil.nga.geopackage.extension.im.portrayal with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static StylesDaoStylesDao. create(GeoPackageCoreConnection db)Create the DAOstatic StylesheetsDaoStylesheetsDao. create(GeoPackageCoreConnection db)Create the DAOstatic SymbolContentDaoSymbolContentDao. create(GeoPackageCoreConnection db)Create the DAOstatic SymbolImagesDaoSymbolImagesDao. create(GeoPackageCoreConnection db)Create the DAOstatic SymbolsDaoSymbolsDao. create(GeoPackageCoreConnection db)Create the DAOstatic StylesDaoPortrayalExtension. getStylesDao(GeoPackageCoreConnection db)Get the Styles DAOstatic StylesheetsDaoPortrayalExtension. getStylesheetsDao(GeoPackageCoreConnection db)Get the Stylesheets DAOstatic SymbolContentDaoPortrayalExtension. getSymbolContentDao(GeoPackageCoreConnection db)Get the Symbol Content DAOstatic SymbolImagesDaoPortrayalExtension. getSymbolImagesDao(GeoPackageCoreConnection db)Get the Symbol Images DAOstatic SymbolsDaoPortrayalExtension. getSymbolsDao(GeoPackageCoreConnection db)Get the Symbols DAOConstructors in mil.nga.geopackage.extension.im.portrayal with parameters of type GeoPackageCoreConnection Constructor Description PortrayalTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.im.vector_tiles
Methods in mil.nga.geopackage.extension.im.vector_tiles with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static VectorTilesFieldsDaoVectorTilesFieldsDao. create(GeoPackageCoreConnection db)Create the DAOstatic VectorTilesLayersDaoVectorTilesLayersDao. create(GeoPackageCoreConnection db)Create the DAOstatic VectorTilesFieldsDaoVectorTilesExtension. getVectorTilesFieldsDao(GeoPackageCoreConnection db)Get the Fields DAOstatic VectorTilesLayersDaoVectorTilesExtension. getVectorTilesLayersDao(GeoPackageCoreConnection db)Get the Layers DAOConstructors in mil.nga.geopackage.extension.im.vector_tiles with parameters of type GeoPackageCoreConnection Constructor Description VectorTilesTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.metadata
Methods in mil.nga.geopackage.extension.metadata with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static MetadataDaoMetadataDao. create(GeoPackageCoreConnection db)Create the DAOstatic MetadataDaoMetadataExtension. getMetadataDao(GeoPackageCoreConnection db)Get a Metadata DAOstatic MetadataReferenceDaoMetadataExtension. getMetadataReferenceDao(GeoPackageCoreConnection db)Get a Metadata Reference DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.metadata.reference
Methods in mil.nga.geopackage.extension.metadata.reference with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static MetadataReferenceDaoMetadataReferenceDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.contents
Methods in mil.nga.geopackage.extension.nga.contents with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ContentsIdDaoContentsIdDao. create(GeoPackageCoreConnection db)Create the DAOstatic ContentsIdDaoContentsIdExtension. getContentsIdDao(GeoPackageCoreConnection db)Get a Contents Id DAOConstructors in mil.nga.geopackage.extension.nga.contents with parameters of type GeoPackageCoreConnection Constructor Description ContentsIdTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.index
Methods in mil.nga.geopackage.extension.nga.index with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GeometryIndexDaoGeometryIndexDao. create(GeoPackageCoreConnection db)Create the DAOstatic TableIndexDaoTableIndexDao. create(GeoPackageCoreConnection db)Create the DAOstatic GeometryIndexDaoFeatureTableCoreIndex. getGeometryIndexDao(GeoPackageCoreConnection db)Get a Geometry Index DAOstatic TableIndexDaoFeatureTableCoreIndex. getTableIndexDao(GeoPackageCoreConnection db)Get a Table Index DAOConstructors in mil.nga.geopackage.extension.nga.index with parameters of type GeoPackageCoreConnection Constructor Description GeometryIndexTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.link
Methods in mil.nga.geopackage.extension.nga.link with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static FeatureTileLinkDaoFeatureTileLinkDao. create(GeoPackageCoreConnection db)Create the DAOstatic FeatureTileLinkDaoFeatureTileTableCoreLinker. getFeatureTileLinkDao(GeoPackageCoreConnection db)Get a Feature Tile Link DAOConstructors in mil.nga.geopackage.extension.nga.link with parameters of type GeoPackageCoreConnection Constructor Description FeatureTileLinkTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.nga.scale
Methods in mil.nga.geopackage.extension.nga.scale with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileScalingDaoTileScalingDao. create(GeoPackageCoreConnection db)Create the DAOstatic TileScalingDaoTileTableScaling. getTileScalingDao(GeoPackageCoreConnection db)Get a Tile Scaling DAOConstructors in mil.nga.geopackage.extension.nga.scale with parameters of type GeoPackageCoreConnection Constructor Description TileScalingTableCreator(GeoPackageCoreConnection db)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.related
Methods in mil.nga.geopackage.extension.related with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static ExtendedRelationsDaoExtendedRelationsDao. create(GeoPackageCoreConnection db)Create the DAOstatic ExtendedRelationsDaoRelatedTablesCoreExtension. getExtendedRelationsDao(GeoPackageCoreConnection db)Get a Extended Relations DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.rtree
Fields in mil.nga.geopackage.extension.rtree declared as GeoPackageCoreConnection Modifier and Type Field Description protected GeoPackageCoreConnectionRTreeIndexCoreExtension. connectionConnection -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema
Methods in mil.nga.geopackage.extension.schema with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnConstraintsDaoSchemaExtension. getDataColumnConstraintsDao(GeoPackageCoreConnection db)Get a Data Column Constraints DAOstatic DataColumnsDaoSchemaExtension. getDataColumnsDao(GeoPackageCoreConnection db)Get a Data Columns DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema.columns
Methods in mil.nga.geopackage.extension.schema.columns with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnsDaoDataColumnsDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.extension.schema.constraints
Methods in mil.nga.geopackage.extension.schema.constraints with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static DataColumnConstraintsDaoDataColumnConstraintsDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.features.columns
Methods in mil.nga.geopackage.features.columns with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static GeometryColumnsDaoGeometryColumnsDao. create(GeoPackageCoreConnection db)Create the DAOstatic GeometryColumnsSfSqlDaoGeometryColumnsSfSqlDao. create(GeoPackageCoreConnection db)Create the DAOstatic GeometryColumnsSqlMmDaoGeometryColumnsSqlMmDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.srs
Methods in mil.nga.geopackage.srs with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static SpatialReferenceSystemDaoSpatialReferenceSystemDao. create(GeoPackageCoreConnection db)Create the DAOstatic SpatialReferenceSystemSfSqlDaoSpatialReferenceSystemSfSqlDao. create(GeoPackageCoreConnection db)Create the DAOstatic SpatialReferenceSystemSqlMmDaoSpatialReferenceSystemSqlMmDao. create(GeoPackageCoreConnection db)Create the DAOstatic voidSpatialReferenceSystemDao. setExtensionValues(GeoPackageCoreConnection db, SpatialReferenceSystem srs)Set extension values into the spatial reference system -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.tiles.matrix
Methods in mil.nga.geopackage.tiles.matrix with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileMatrixDaoTileMatrixDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.tiles.matrixset
Methods in mil.nga.geopackage.tiles.matrixset with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static TileMatrixSetDaoTileMatrixSetDao. create(GeoPackageCoreConnection db)Create the DAO -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user that return GeoPackageCoreConnection Modifier and Type Method Description GeoPackageCoreConnectionUserCoreDao. getDb()Get the database connectionMethods in mil.nga.geopackage.user with parameters of type GeoPackageCoreConnection Modifier and Type Method Description TTableUserTableReader. readTable(GeoPackageCoreConnection db)Read the tableConstructors in mil.nga.geopackage.user with parameters of type GeoPackageCoreConnection Constructor Description UserCoreDao(String database, GeoPackageCoreConnection db, UserCoreConnection<TColumn,TTable,TRow,TResult> userDb, TTable table)Constructor -
Uses of GeoPackageCoreConnection in mil.nga.geopackage.user.custom
Methods in mil.nga.geopackage.user.custom with parameters of type GeoPackageCoreConnection Modifier and Type Method Description static UserCustomTableUserCustomTableReader. readTable(GeoPackageCoreConnection connection, String tableName)Read the table
-