Enum Class ELfnResourceType

java.lang.Object
java.lang.Enum<ELfnResourceType>
com.luciad.fusion.tilestore.ELfnResourceType
All Implemented Interfaces:
Serializable, Comparable<ELfnResourceType>, Constable

public enum ELfnResourceType extends Enum<ELfnResourceType>
Enumeration for the resource types.
Since:
10.0
  • Enum Constant Details

    • COVERAGE

      public static final ELfnResourceType 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

      public static final ELfnResourceType 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

      public static final ELfnResourceType THEME
      A theme groups a number of resources. They can be used to organize resources into a more user-friendly structure.
  • Method Details

    • values

      public static ELfnResourceType[] 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

      public static ELfnResourceType valueOf(String name)
      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 name
      NullPointerException - if the argument is null