Package com.luciad.fusion.platform.model
Enum Class ELfnProductType
- All Implemented Interfaces:
Serializable
,Comparable<ELfnProductType>
,Constable
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 ConstantDescriptionType 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 TypeMethodDescriptionstatic ELfnProductType
Returns the enum constant of this class with the specified name.static ELfnProductType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EMPTY
Type indicating that a product does not contain any data. -
RASTER
Type indicating that a product contains only raster data. -
VECTOR
Type indicating that a product contains only vector data. -
MESH
Type indicating that a product contains only mesh data. -
POINT_CLOUD
Type indicating that a product contains only point cloud data. -
PANORAMA
Type indicating that a product contains only panoramic data. -
MIXED
Type indicating that a product contains data from a mix of different types. -
UNKNOWN
Type indicating that the type of the data within the product could not be determined.
-
-
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
-