Modifier and Type | Field and Description |
---|---|
static CDFDataType |
CDFDataType.CHAR
CHAR
|
static CDFDataType |
CDFDataType.DOUBLE
DOUBLE
|
static CDFDataType |
CDFDataType.EPOCH
EPOCH
|
static CDFDataType |
CDFDataType.EPOCH16
EPOCH16
|
static CDFDataType |
CDFDataType.FLOAT
FLOAT
|
static CDFDataType |
CDFDataType.INT1
INT1
|
static CDFDataType |
CDFDataType.INT2
INT2
|
static CDFDataType |
CDFDataType.INT4
INT4
|
static CDFDataType |
CDFDataType.INT8
INT8
|
static CDFDataType |
CDFDataType.TT2000
TT2000
|
static CDFDataType |
CDFDataType.UINT1
UINT1
|
static CDFDataType |
CDFDataType.UINT2
UINT2
|
static CDFDataType |
CDFDataType.UINT4
UINT4
|
Modifier and Type | Method and Description |
---|---|
static CDFDataType |
SupportedTypes.cdfType(int type)
Returns CDFDataType object for specified CDF type.returns null if the type is not supported by this package.
|
static CDFDataType |
CDFDataType.getType(CDFTimeType type)
Returns CDFDataType for a given CDFTimeType.
|
Modifier and Type | Method and Description |
---|---|
void |
GenericWriter.addGlobalAttributeEntry(java.lang.String name,
CDFDataType dataType,
java.lang.Object value)
Adds a global attribute entry of specified type..
|
void |
GenericWriter.addNRVVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
int size,
java.lang.Object value)
Adds a NRV record of the given type and dimensions.
|
void |
GenericWriter.addNRVVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
java.lang.Object value)
Adds a NRV record of the given numeric type and dimension.
|
void |
GenericWriter.addNRVVariable(java.lang.String name,
CDFDataType dataType,
java.lang.Object value)
Adds a scalar NRV record of the given numeric type.
|
void |
GenericWriter.addVariableAttributeEntry(java.lang.String vname,
java.lang.String aname,
CDFDataType dataType,
java.lang.Object value)
Sets the value of a given attribute for a variable.This method creates a new value for the given attribute.
|
void |
GenericWriter.defineCompressedTimeSeries(java.lang.String name,
CDFDataType dataType,
int[] dim,
java.lang.String tname,
CDFTimeType timeType)
Defines a time series of the named variable of specified data type and
the time variable of specified name and type.Variable's data is compressed before it is stored
|
void |
GenericWriter.defineCompressedVariable(java.lang.String name,
CDFDataType dataType,
int[] dim)
Defines a compressed variable of specified numeric data type and
dimensions.
|
void |
GenericWriter.defineCompressedVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
int size)
Defines a compressed variable of string type with given dimensions.
|
void |
GenericWriter.defineNRVVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
int size)
Defines a NRV record of the given type and dimensions.Parameter size is ignored for variables of numeric types.
|
void |
GenericWriter.defineTimeSeries(java.lang.String name,
CDFDataType dataType,
int[] dim)
Defines a time series for a new variable of specified data type.Variable's times are contained in a time variable named Epoch which
must have been created before this method is called.
|
void |
GenericWriter.defineTimeSeries(java.lang.String name,
CDFDataType dataType,
int[] dim,
java.lang.String tname)
Defines a time series of the named variable of specified data type
and the time variable of specified name.The named time variable must have been defined before this method
is called.Name of the time variable is assigned to the DEPEND_0
attribute.
|
void |
GenericWriter.defineTimeSeries(java.lang.String name,
CDFDataType dataType,
int[] dim,
java.lang.String tname,
CDFTimeType timeType,
boolean compressed)
Defines a time series of a new named variable of specified data type
and the time variable of specified name and type.
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim)
Defines a named variable of specified numeric data type
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
boolean[] varys,
boolean recordVariance,
boolean compressed,
java.lang.Object pad)
Defines a variable of specified numeric data type using default
sparse record option.
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
boolean[] varys,
boolean recordVariance,
boolean compressed,
java.lang.Object pad,
int size)
Defines a variable of string type using given
sparse record option.
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
boolean[] varys,
boolean recordVariance,
boolean compressed,
java.lang.Object pad,
int size,
SparseRecordOption option)
Defines a new variable
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
boolean[] varys,
boolean recordVariance,
boolean compressed,
java.lang.Object pad,
SparseRecordOption option)
Defines a variable of specified numeric data type using given
sparse record option.
|
void |
GenericWriter.defineVariable(java.lang.String name,
CDFDataType dataType,
int[] dim,
int size)
Defines a named variable of specified numeric data type and dimensions.
|
void |
GenericWriter.setVariableAttributeEntry(java.lang.String vname,
java.lang.String aname,
CDFDataType dataType,
java.lang.Object value)
Sets the value of a given attribute for a variable.
|