Package com.luciad.format.grib
Enum Class TLcdGRIBModelDecoder.MultiValuedRasterCreation
java.lang.Object
java.lang.Enum<TLcdGRIBModelDecoder.MultiValuedRasterCreation>
com.luciad.format.grib.TLcdGRIBModelDecoder.MultiValuedRasterCreation
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGRIBModelDecoder.MultiValuedRasterCreation>
,Constable
- Enclosing class:
TLcdGRIBModelDecoder
public static enum TLcdGRIBModelDecoder.MultiValuedRasterCreation
extends Enum<TLcdGRIBModelDecoder.MultiValuedRasterCreation>
Determines when a multivalued raster should be created.
- Since:
- 2013.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe decoder will first try theAUTO
behavior.The decoder will detect related datasets in the same file, or look in the same directory for related files using heuristics based on the file name of the original source file.The decoded model or model container will always contain single-valuedILcdRaster
instances. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NEVER
The decoded model or model container will always contain single-valuedILcdRaster
instances. -
AUTO
The decoder will detect related datasets in the same file, or look in the same directory for related files using heuristics based on the file name of the original source file. For example, if the decoder is decoding a file with only the u-component of wind, it will look for a dataset that contains the v-component of wind. -
ALWAYS
The decoder will first try theAUTO
behavior. If a related model is not found for a single model, a one-dimensional multi-value raster is created. This allows visualizing simple data such as temperature with a grid of icons.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-