Uses of Class
mil.nga.geopackage.db.GeoPackageDataType
-
-
Uses of GeoPackageDataType in mil.nga.geopackage.attributes
Methods in mil.nga.geopackage.attributes with parameters of type GeoPackageDataType Modifier and Type Method Description static AttributesColumnAttributesColumn. createColumn(int index, String name, GeoPackageDataType type)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(int index, String name, GeoPackageDataType type, Long max)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(int index, String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(String name, GeoPackageDataType type)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(String name, GeoPackageDataType type, Long max)Create a new columnstatic AttributesColumnAttributesColumn. createColumn(String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new column -
Uses of GeoPackageDataType in mil.nga.geopackage.db
Methods in mil.nga.geopackage.db that return GeoPackageDataType Modifier and Type Method Description static GeoPackageDataTypeGeoPackageDataType. findName(String name)Find the Data Type from the name if it exists, ignoring casestatic GeoPackageDataTypeGeoPackageDataType. fromName(String name)Get the Data Type from the name, ignoring caseGeoPackageDataTypeMappedColumn. getDataType()Get the data typestatic GeoPackageDataTypeGeoPackageDataType. valueOf(String name)Returns the enum constant of this type with the specified name.static GeoPackageDataType[]GeoPackageDataType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in mil.nga.geopackage.db with parameters of type GeoPackageDataType Modifier and Type Method Description static List<List<Object>>ResultUtils. buildResults(Result result, GeoPackageDataType[] dataTypes, Integer limit)Build the result rows from the result and the optional limitstatic List<Object>ResultUtils. buildSingleColumnResults(Result result, int column, GeoPackageDataType dataType, Integer limit)Build single column result rows from the result and the optional limitstatic ObjectResultUtils. buildSingleResult(Result result, int column, GeoPackageDataType dataType)Build single result value from the columnstatic StringCoreSQLUtils. columnDefaultValue(Object defaultValue, GeoPackageDataType dataType)Get the column default value as a stringstatic DateConverterDateConverter. converter(GeoPackageDataType type)Get a date converter for the data typestatic ObjectResultUtils. getFloatValue(Result result, int index, GeoPackageDataType dataType)Get the float value from the cursor of the columnstatic ObjectResultUtils. getIntegerValue(Result result, int index, GeoPackageDataType dataType)Get the integer value from the cursor of the columnObjectResult. getValue(int index, GeoPackageDataType dataType)Get the value for the columnstatic ObjectResultUtils. getValue(Object value, GeoPackageDataType dataType)Get the converted value from the value and data typestatic ObjectResultUtils. getValue(Result result, int index, int type, GeoPackageDataType dataType)Get the value from the cursor from the provided columnstatic ObjectResultUtils. getValue(Result result, int index, GeoPackageDataType dataType)Get the value from the result from the provided column AssumesResult.getType(int)returns one of:ResultUtils.FIELD_TYPE_INTEGER,ResultUtils.FIELD_TYPE_FLOAT,ResultUtils.FIELD_TYPE_STRING,ResultUtils.FIELD_TYPE_BLOB, orResultUtils.FIELD_TYPE_NULLList<List<Object>>GeoPackageCoreConnection. queryResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for valuesabstract List<List<Object>>GeoPackageCoreConnection. queryResults(String sql, String[] args, GeoPackageDataType[] dataTypes, Integer limit)Query for values up to the limitList<Object>GeoPackageCoreConnection. querySingleColumnResults(String sql, String[] args, int column, GeoPackageDataType dataType)Query for values from a single columnabstract List<Object>GeoPackageCoreConnection. querySingleColumnResults(String sql, String[] args, int column, GeoPackageDataType dataType, Integer limit)Query for values from a single column up to the limitList<Object>GeoPackageCoreConnection. querySingleColumnResults(String sql, String[] args, GeoPackageDataType dataType)Query for values from the first column<T> List<T>GeoPackageCoreConnection. querySingleColumnTypedResults(String sql, String[] args, int column, GeoPackageDataType dataType)Query for typed values from a single column<T> List<T>GeoPackageCoreConnection. querySingleColumnTypedResults(String sql, String[] args, int column, GeoPackageDataType dataType, Integer limit)Query for typed values from a single column up to the limit<T> List<T>GeoPackageCoreConnection. querySingleColumnTypedResults(String sql, String[] args, GeoPackageDataType dataType)Query for typed values from the first columnabstract ObjectGeoPackageCoreConnection. querySingleResult(String sql, String[] args, int column, GeoPackageDataType dataType)Query the SQL for a single result object with the expected data typeObjectGeoPackageCoreConnection. querySingleResult(String sql, String[] args, GeoPackageDataType dataType)Query the SQL for a single result object in the first column with the expected data typeList<Object>GeoPackageCoreConnection. querySingleRowResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for values in a single (first) row<T> List<T>GeoPackageCoreConnection. querySingleRowTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for typed values in a single (first) row<T> TGeoPackageCoreConnection. querySingleTypedResult(String sql, String[] args, int column, GeoPackageDataType dataType)Query the SQL for a single result typed object with the expected data type<T> TGeoPackageCoreConnection. querySingleTypedResult(String sql, String[] args, GeoPackageDataType dataType)Query the SQL for a single result typed object in the first column with the expected data type<T> List<List<T>>GeoPackageCoreConnection. queryTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for typed values<T> List<List<T>>GeoPackageCoreConnection. queryTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes, Integer limit)Query for typed values up to the limitvoidMappedColumn. setDataType(GeoPackageDataType dataType)Set the data typeConstructors in mil.nga.geopackage.db with parameters of type GeoPackageDataType Constructor Description MappedColumn(String toColumn, Object defaultValue, GeoPackageDataType dataType)ConstructorMappedColumn(String toColumn, String fromColumn, Object defaultValue, GeoPackageDataType dataType)Constructor -
Uses of GeoPackageDataType in mil.nga.geopackage.db.table
Methods in mil.nga.geopackage.db.table that return GeoPackageDataType Modifier and Type Method Description GeoPackageDataTypeTableColumn. getDataType()Get the column data typestatic GeoPackageDataTypeTableInfo. getDataType(String type)Get the data type from the type valueMethods in mil.nga.geopackage.db.table with parameters of type GeoPackageDataType Modifier and Type Method Description static ObjectTableInfo. getDefaultValue(String defaultValue, GeoPackageDataType type)Get the default object value for the string default value with the data typebooleanTableColumn. isDataType(GeoPackageDataType dataType)Is the column the data type -
Uses of GeoPackageDataType in mil.nga.geopackage.extension.related.simple
Methods in mil.nga.geopackage.extension.related.simple with parameters of type GeoPackageDataType Modifier and Type Method Description static booleanSimpleAttributesTable. isSimple(GeoPackageDataType dataType)Determine if the data type is a simple type: TEXT, INTEGER, or REAL storage classes -
Uses of GeoPackageDataType in mil.nga.geopackage.features
Methods in mil.nga.geopackage.features that return GeoPackageDataType Modifier and Type Method Description static GeoPackageDataTypeFeatureCoreGenerator. getType(Object value)Get the type for the object valueMethods in mil.nga.geopackage.features with parameters of type GeoPackageDataType Modifier and Type Method Description static ObjectFeatureCoreGenerator. getValue(Object value, GeoPackageDataType type)Get the value for the object value with the data type -
Uses of GeoPackageDataType in mil.nga.geopackage.features.user
Methods in mil.nga.geopackage.features.user with parameters of type GeoPackageDataType Modifier and Type Method Description static FeatureColumnFeatureColumn. createColumn(int index, String name, GeoPackageDataType type)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(int index, String name, GeoPackageDataType type, Long max)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(int index, String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(String name, GeoPackageDataType type)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(String name, GeoPackageDataType type, Long max)Create a new columnstatic FeatureColumnFeatureColumn. createColumn(String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new columnprotected static StringFeatureColumn. getTypeName(String name, GeoPackageDataType dataType, GeometryType geometryType)Get the type name from the data and geometry type -
Uses of GeoPackageDataType in mil.nga.geopackage.tiles.user
Methods in mil.nga.geopackage.tiles.user with parameters of type GeoPackageDataType Modifier and Type Method Description static TileColumnTileColumn. createColumn(int index, String name, GeoPackageDataType type)Create a new columnstatic TileColumnTileColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic TileColumnTileColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic TileColumnTileColumn. createColumn(int index, String name, GeoPackageDataType type, Long max)Create a new columnstatic TileColumnTileColumn. createColumn(int index, String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new columnstatic TileColumnTileColumn. createColumn(String name, GeoPackageDataType type)Create a new columnstatic TileColumnTileColumn. createColumn(String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic TileColumnTileColumn. createColumn(String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic TileColumnTileColumn. createColumn(String name, GeoPackageDataType type, Long max)Create a new columnstatic TileColumnTileColumn. createColumn(String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new column -
Uses of GeoPackageDataType in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user that return GeoPackageDataType Modifier and Type Method Description GeoPackageDataTypeUserColumn. getDataType()Get the data typeMethods in mil.nga.geopackage.user with parameters of type GeoPackageDataType Modifier and Type Method Description List<TColumn>UserColumns. columnsOfType(GeoPackageDataType type)Get the columns with the provided data typeList<TColumn>UserTable. columnsOfType(GeoPackageDataType type)Get the columns with the provided data typeprotected static StringUserColumn. getTypeName(String name, GeoPackageDataType dataType)Get the type name from the data typeList<List<Object>>UserCoreDao. queryResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for valuesList<List<Object>>UserCoreDao. queryResults(String sql, String[] args, GeoPackageDataType[] dataTypes, Integer limit)Query for values up to the limitList<Object>UserCoreDao. querySingleColumnResults(String sql, String[] args, int column, GeoPackageDataType dataType)Query for values from a single columnList<Object>UserCoreDao. querySingleColumnResults(String sql, String[] args, int column, GeoPackageDataType dataType, Integer limit)Query for values from a single column up to the limitList<Object>UserCoreDao. querySingleColumnResults(String sql, String[] args, GeoPackageDataType dataType)Query for values from the first column<T> List<T>UserCoreDao. querySingleColumnTypedResults(String sql, String[] args, int column, GeoPackageDataType dataType)Query for typed values from a single column<T> List<T>UserCoreDao. querySingleColumnTypedResults(String sql, String[] args, int column, GeoPackageDataType dataType, Integer limit)Query for typed values from a single column up to the limit<T> List<T>UserCoreDao. querySingleColumnTypedResults(String sql, String[] args, GeoPackageDataType dataType)Query for typed values from the first columnObjectUserCoreDao. querySingleResult(String sql, String[] args, int column, GeoPackageDataType dataType)Query the SQL for a single result object with the expected data typeObjectUserCoreDao. querySingleResult(String sql, String[] args, GeoPackageDataType dataType)Query the SQL for a single result object in the first column with the expected data typeList<Object>UserCoreDao. querySingleRowResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for values in a single (first) row<T> List<T>UserCoreDao. querySingleRowTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for typed values in a single (first) row<T> TUserCoreDao. querySingleTypedResult(String sql, String[] args, int column, GeoPackageDataType dataType)Query the SQL for a single result typed object with the expected data type<T> TUserCoreDao. querySingleTypedResult(String sql, String[] args, GeoPackageDataType dataType)Query the SQL for a single result typed object in the first column with the expected data type<T> List<List<T>>UserCoreDao. queryTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes)Query for typed values<T> List<List<T>>UserCoreDao. queryTypedResults(String sql, String[] args, GeoPackageDataType[] dataTypes, Integer limit)Query for typed values up to the limitvoidUserColumn. setDataType(GeoPackageDataType dataType)Set the data typeprotected voidUserColumns. typeCheck(GeoPackageDataType expected, TColumn column)Check for the expected data typeprotected static voidUserColumn. validateDataType(String name, GeoPackageDataType dataType)Validate the data typeConstructors in mil.nga.geopackage.user with parameters of type GeoPackageDataType Constructor Description UserColumn(int index, String name, String type, GeoPackageDataType dataType, Long max, boolean notNull, Object defaultValue, boolean primaryKey, boolean autoincrement)ConstructorUserColumn(int index, String name, GeoPackageDataType dataType, Long max, boolean notNull, Object defaultValue, boolean primaryKey, boolean autoincrement)Constructor -
Uses of GeoPackageDataType in mil.nga.geopackage.user.custom
Methods in mil.nga.geopackage.user.custom with parameters of type GeoPackageDataType Modifier and Type Method Description static UserCustomColumnUserCustomColumn. createColumn(int index, String name, GeoPackageDataType type)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(int index, String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(int index, String name, GeoPackageDataType type, Long max)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(int index, String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(String name, GeoPackageDataType type)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(String name, GeoPackageDataType type, boolean notNull)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(String name, GeoPackageDataType type, boolean notNull, Object defaultValue)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(String name, GeoPackageDataType type, Long max)Create a new columnstatic UserCustomColumnUserCustomColumn. createColumn(String name, GeoPackageDataType type, Long max, boolean notNull, Object defaultValue)Create a new column
-