public enum GeoPackageDataType extends Enum<GeoPackageDataType>
| Enum Constant and Description |
|---|
BLOB
BLOB{(max_size)}: Variable length binary data.
|
BOOLEAN
A boolean value representing true or false.
|
DATE
ISO-8601 date string in the form YYYY-MM-DD encoded in either UTF-8 or
UTF-16.
|
DATETIME
ISO-8601 date/time string in the form YYYY-MM-DDTHH:MM:SS.SSSZ with T
separator character and Z suffix for coordinated universal time (UTC)
encoded in either UTF-8 or UTF-16.
|
DOUBLE
64-bit IEEE floating point number.
|
FLOAT
32-bit IEEE floating point number.
|
INT
64-bit signed two’s complement integer.
|
INTEGER
64-bit signed two’s complement integer.
|
MEDIUMINT
32-bit signed two’s complement integer.
|
REAL
64-bit IEEE floating point number.
|
SMALLINT
16-bit signed two’s complement integer.
|
TEXT
TEXT{(maxchar_count)}: Variable length string encoded in either UTF-8 or
UTF-16, determined by PRAGMA encoding; see
http://www.sqlite.org/pragma.html#pragma_encoding.
|
TINYINT
8-bit signed two’s complement integer.
|
| Modifier and Type | Method and Description |
|---|---|
static GeoPackageDataType |
findName(String name)
Find the Data Type from the name if it exists, ignoring case
|
static GeoPackageDataType |
fromName(String name)
Get the Data Type from the name, ignoring case
|
Class<?> |
getClassType()
Get the Java class type
|
static GeoPackageDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoPackageDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoPackageDataType BOOLEAN
public static final GeoPackageDataType TINYINT
public static final GeoPackageDataType SMALLINT
public static final GeoPackageDataType MEDIUMINT
public static final GeoPackageDataType INT
public static final GeoPackageDataType INTEGER
public static final GeoPackageDataType FLOAT
public static final GeoPackageDataType DOUBLE
public static final GeoPackageDataType REAL
public static final GeoPackageDataType TEXT
public static final GeoPackageDataType BLOB
public static final GeoPackageDataType DATE
public static final GeoPackageDataType DATETIME
public static GeoPackageDataType[] values()
for (GeoPackageDataType c : GeoPackageDataType.values()) System.out.println(c);
public static GeoPackageDataType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Class<?> getClassType()
public static GeoPackageDataType fromName(String name)
name - namepublic static GeoPackageDataType findName(String name)
name - nameCopyright © 2020 National Geospatial-Intelligence Agency. All rights reserved.