Package | Description |
---|---|
opendap.dap |
This package contains the OPeNDAP core classes, known as the Data Access
Protocol (DAP).
|
Modifier and Type | Class and Description |
---|---|
class |
BaseTypePrimitiveVector
A vector of
BaseType . |
class |
BooleanPrimitiveVector
A vector of booleans.
|
class |
BytePrimitiveVector
A vector of bytes.
|
class |
Float32PrimitiveVector
A vector of doubles.
|
class |
Float64PrimitiveVector
A vector of doubles.
|
class |
Int16PrimitiveVector
A vector of shorts.
|
class |
Int32PrimitiveVector
A vector of ints.
|
class |
UInt16PrimitiveVector
A vector of unsigned ints.
|
class |
UInt32PrimitiveVector
A vector of unsigned ints.
|
Modifier and Type | Method and Description |
---|---|
PrimitiveVector |
DVector.getPrimitiveVector()
Returns the
PrimitiveVector for this vector. |
PrimitiveVector |
BaseType.newPrimitiveVector()
Constructs a new
PrimitiveVector object optimized for the
particular data type of this BaseType . |
PrimitiveVector |
DByte.newPrimitiveVector()
Constructs a new
BytePrimitiveVector . |
PrimitiveVector |
DFloat32.newPrimitiveVector()
Constructs a new
Float32PrimitiveVector . |
PrimitiveVector |
DFloat64.newPrimitiveVector()
Constructs a new
Float64PrimitiveVector . |
PrimitiveVector |
DInt16.newPrimitiveVector()
Constructs a new
Int16PrimitiveVector . |
PrimitiveVector |
DInt32.newPrimitiveVector()
Constructs a new
Int32PrimitiveVector . |
PrimitiveVector |
DUInt16.newPrimitiveVector()
Constructs a new
UInt16PrimitiveVector . |
PrimitiveVector |
DUInt32.newPrimitiveVector()
Constructs a new
UInt32PrimitiveVector . |
PrimitiveVector |
BaseTypePrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
BooleanPrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
BytePrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
Float32PrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
Float64PrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
Int16PrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
PrimitiveVector |
Int32PrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|
abstract PrimitiveVector |
PrimitiveVector.subset(int start,
int stop,
int stride)
Create a new primitive vector using a subset of the data.
|