| Package | Description |
|---|---|
| mil.nga.geopackage.db.master |
| Modifier and Type | Method and Description |
|---|---|
static SQLiteMasterColumn[] |
SQLiteMaster.columns(SQLiteMasterColumn... columns)
Shortcut to build columns into an array
|
static SQLiteMasterColumn |
SQLiteMasterColumn.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLiteMasterColumn[] |
SQLiteMasterColumn.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Set<SQLiteMasterColumn> |
SQLiteMaster.columns()
Get the columns in the result
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLiteMasterQuery.add(SQLiteMasterColumn column,
String value)
Add an equality query
|
void |
SQLiteMasterQuery.add(SQLiteMasterColumn column,
String operation,
String value)
Add a query
|
void |
SQLiteMasterQuery.addIsNotNull(SQLiteMasterColumn column)
Add an is not null query
|
void |
SQLiteMasterQuery.addIsNull(SQLiteMasterColumn column)
Add an is null query
|
static SQLiteMasterColumn[] |
SQLiteMaster.columns(SQLiteMasterColumn... columns)
Shortcut to build columns into an array
|
static SQLiteMasterQuery |
SQLiteMasterQuery.create(SQLiteMasterColumn column,
String value)
Create a single equality query
|
static SQLiteMasterQuery |
SQLiteMasterQuery.create(SQLiteMasterColumn column,
String operation,
String value)
Create a single query
|
static SQLiteMasterQuery |
SQLiteMasterQuery.createAnd(SQLiteMasterColumn column,
Collection<String> values)
Create an equality query with multiple values for a single column
combined with an AND
|
static SQLiteMasterQuery |
SQLiteMasterQuery.createAnd(SQLiteMasterColumn column,
String operation,
Collection<String> values)
Create a query with multiple values for a single column combined with an
AND
|
static SQLiteMasterQuery |
SQLiteMasterQuery.createOr(SQLiteMasterColumn column,
Collection<String> values)
Create an equality query with multiple values for a single column
combined with an OR
|
static SQLiteMasterQuery |
SQLiteMasterQuery.createOr(SQLiteMasterColumn column,
String operation,
Collection<String> values)
Create a query with multiple values for a single column combined with an
OR
|
int |
SQLiteMaster.getColumnIndex(SQLiteMasterColumn column)
Get the column index of the column type
|
Object |
SQLiteMaster.getValue(int row,
SQLiteMasterColumn column)
Get the value of the column at the row index
|
Object |
SQLiteMaster.getValue(List<Object> row,
SQLiteMasterColumn column)
Get the value in the row at the column index
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterQuery query)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType type)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType[] types)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType[] types,
SQLiteMasterQuery query)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType[] types,
String tableName)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType type,
SQLiteMasterQuery query)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.query(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
SQLiteMasterType type,
String tableName)
Query the sqlite_master table
|
static SQLiteMaster |
SQLiteMaster.queryViewsOnTable(GeoPackageCoreConnection db,
SQLiteMasterColumn[] columns,
String tableName)
Query the sqlite_master views on the table
|
Copyright © 2020 National Geospatial-Intelligence Agency. All rights reserved.