public static enum NetcdfDataset.Enhance extends java.lang.Enum<NetcdfDataset.Enhance>
Enum Constant and Description |
---|
ApplyRuntimeLoadedEnhancements
All other Enhancement implementations that are loaded by service provider
This includes third party implementations found on the classpath and loaded at runtime.
|
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(java.lang.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 ApplyRuntimeLoadedEnhancements
public static final NetcdfDataset.Enhance ApplyScaleOffset
public static final NetcdfDataset.Enhance ConvertEnums
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 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 CoordSystems
public static final NetcdfDataset.Enhance IncompleteCoordSystems
public static NetcdfDataset.Enhance valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static NetcdfDataset.Enhance[] values()
for (NetcdfDataset.Enhance c : NetcdfDataset.Enhance.values()) System.out.println(c);