public static enum NetcdfDataset.Enhance extends Enum<NetcdfDataset.Enhance>
Enum Constant and Description |
---|
ApplyScaleOffset
Apply scale and offset to values, promoting the data type if needed.
|
ConvertEnums
Convert enums to Strings.
|
ConvertMissing
Replace
missing data with NaNs, for efficiency. |
ConvertUnsigned
Convert unsigned values to signed values.
|
CoordSystems
Build coordinate systems.
|
IncompleteCoordSystems
Build coordinate systems allowing for incomplete coordinate systems (i.e.
|
Modifier and Type | Method and Description |
---|---|
static NetcdfDataset.Enhance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetcdfDataset.Enhance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetcdfDataset.Enhance ConvertEnums
public static final NetcdfDataset.Enhance ConvertUnsigned
CDM.UNSIGNED
variables, reinterpret the bit patterns of any
negative values as unsigned. The result will be positive values that must be stored in a
larger data type
.public static final NetcdfDataset.Enhance ApplyScaleOffset
public static final NetcdfDataset.Enhance ConvertMissing
missing
data with NaNs, for efficiency. Note that if the
enhanced data type is not FLOAT
or DOUBLE
, this has no effect.public static final NetcdfDataset.Enhance CoordSystems
public static final NetcdfDataset.Enhance IncompleteCoordSystems
public static NetcdfDataset.Enhance[] values()
for (NetcdfDataset.Enhance c : NetcdfDataset.Enhance.values()) System.out.println(c);
public static NetcdfDataset.Enhance 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 null