Enum Class ELfnProductType

java.lang.Object
java.lang.Enum<ELfnProductType>
com.luciad.fusion.platform.model.ELfnProductType
All Implemented Interfaces:
Serializable, Comparable<ELfnProductType>, Constable

public enum ELfnProductType extends Enum<ELfnProductType>
The product type describes the type of data contained within a product.
Since:
2021.0
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Type indicating that a product does not contain any data.
    Type indicating that a product contains only mesh data.
    Type indicating that a product contains data from a mix of different types.
    Type indicating that a product contains only panoramic data.
    Type indicating that a product contains only point cloud data.
    Type indicating that a product contains only raster data.
    Type indicating that the type of the data within the product could not be determined.
    Type indicating that a product contains only vector data.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • EMPTY

      public static final ELfnProductType EMPTY
      Type indicating that a product does not contain any data.
    • RASTER

      public static final ELfnProductType RASTER
      Type indicating that a product contains only raster data.
    • VECTOR

      public static final ELfnProductType VECTOR
      Type indicating that a product contains only vector data.
    • MESH

      public static final ELfnProductType MESH
      Type indicating that a product contains only mesh data.
    • POINT_CLOUD

      public static final ELfnProductType POINT_CLOUD
      Type indicating that a product contains only point cloud data.
    • PANORAMA

      public static final ELfnProductType PANORAMA
      Type indicating that a product contains only panoramic data.
    • MIXED

      public static final ELfnProductType MIXED
      Type indicating that a product contains data from a mix of different types.
    • UNKNOWN

      public static final ELfnProductType UNKNOWN
      Type indicating that the type of the data within the product could not be determined.
  • Method Details

    • values

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