rdf4j-postgis
Version 0.1.0.0
|
Specifies the various dimension types for coverage values. More...
Public Member Functions | |
SampleDimensionType[] | family () |
Returns the list of codes of the same kind than this code list element. More... | |
Static Public Attributes | |
static final SampleDimensionType | UNSIGNED_1BIT = new SampleDimensionType("UNSIGNED_1BIT") |
Unsigned 1 bit integers. More... | |
static final SampleDimensionType | UNSIGNED_2BITS = new SampleDimensionType("UNSIGNED_2BITS") |
Unsigned 2 bits integers. More... | |
static final SampleDimensionType | UNSIGNED_4BITS = new SampleDimensionType("UNSIGNED_4BITS") |
Unsigned 4 bits integers. More... | |
static final SampleDimensionType | UNSIGNED_8BITS = new SampleDimensionType("UNSIGNED_8BITS") |
Unsigned 8 bits integers. More... | |
static final SampleDimensionType | SIGNED_8BITS = new SampleDimensionType("SIGNED_8BITS") |
Signed 8 bits integers. More... | |
static final SampleDimensionType | UNSIGNED_16BITS = new SampleDimensionType("UNSIGNED_16BITS") |
Unsigned 16 bits integers. More... | |
static final SampleDimensionType | SIGNED_16BITS = new SampleDimensionType("SIGNED_16BITS") |
Signed 16 bits integers. More... | |
static final SampleDimensionType | UNSIGNED_32BITS = new SampleDimensionType("UNSIGNED_32BITS") |
Unsigned 32 bits integers. More... | |
static final SampleDimensionType | SIGNED_32BITS = new SampleDimensionType("SIGNED_32BITS") |
Signed 32 bits integers. More... | |
static final SampleDimensionType | REAL_32BITS = new SampleDimensionType("REAL_32BITS") |
Simple precision floating point numbers. More... | |
static final SampleDimensionType | REAL_64BITS = new SampleDimensionType("REAL_64BITS") |
Double precision floating point numbers. More... | |
Private Member Functions | |
SampleDimensionType (final String name) | |
Constructs an element of the given name. More... | |
Static Private Attributes | |
static final List< SampleDimensionType > | VALUES = new ArrayList<SampleDimensionType>(11) |
List of all enumerations of this type. More... | |
Specifies the various dimension types for coverage values.
For grid coverages, these correspond to band types.
|
private |
Constructs an element of the given name.
The new element is automatically added to the list returned by values().
name | the name of the new element. |
References SampleDimensionType.VALUES.
SampleDimensionType [] family | ( | ) |
Returns the list of codes of the same kind than this code list element.
Invoking this method is equivalent to invoking values(), except that this method can be invoked on an instance of the parent
class.
References SampleDimensionType.VALUES.
|
static |
Simple precision floating point numbers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Double precision floating point numbers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Signed 16 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Signed 32 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Signed 8 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 16 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 1 bit integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 2 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 32 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 4 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
static |
Unsigned 8 bits integers.
Referenced by WKBRasterConstants.getDimensionType(), and WKBRasterConstants.getPixelType().
|
staticprivate |
List of all enumerations of this type.
Must be declared before any enum declaration.
Referenced by SampleDimensionType.family(), and SampleDimensionType.SampleDimensionType().