Package com.luciad.format.netcdf
Enum Class TLcdNetCDFModelDecoder.MultiBandImageCreation
java.lang.Object
java.lang.Enum<TLcdNetCDFModelDecoder.MultiBandImageCreation>
com.luciad.format.netcdf.TLcdNetCDFModelDecoder.MultiBandImageCreation
- All Implemented Interfaces:
Serializable
,Comparable<TLcdNetCDFModelDecoder.MultiBandImageCreation>
,Constable
- Enclosing class:
TLcdNetCDFModelDecoder
public static enum TLcdNetCDFModelDecoder.MultiBandImageCreation
extends Enum<TLcdNetCDFModelDecoder.MultiBandImageCreation>
Determines when a multi-band image should be created.
- Since:
- 2015.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
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-bandALcdImage
instances. -
AUTO
The decoder will detect related datasets in the same file. For example, if the decoder is decoding a file that contains the x-component of wind, it will look for a dataset that contains the y-component of wind in the same file.
-
-
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
-