Package com.luciad.fusion.tilestore
Enum Class ELfnResourceType
- All Implemented Interfaces:
Serializable
,Comparable<ELfnResourceType>
,Constable
Enumeration for the resource types.
- Since:
- 10.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 TypeMethodDescriptionstatic ELfnResourceType
Returns the enum constant of this class with the specified name.static ELfnResourceType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COVERAGE
A coverage contains the fusion of a number of assets. The fused data is stored as a hierarchical grid of tiles to allow fast retrieval of any part of the data at any resolution. -
ASSET
An assets is a single source data element that can be fused. This source data can be either image data (for example a GeoTIFF file) or elevation data (for example a DTED file). -
THEME
A theme groups a number of resources. They can be used to organize resources into a more user-friendly structure.
-
-
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
-