Package com.luciad.model
Enum Class TLcdModelMetadata.DataCategory
- All Implemented Interfaces:
Serializable
,Comparable<TLcdModelMetadata.DataCategory>
,Constable
- Enclosing class:
TLcdModelMetadata
Determines the category of data.
- Since:
- 2018.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe data contains raw 3D meshes.The data contains panoramic images.The data is a 3D point cloud.The data is organized in a 2D raster, typically anALcdImage
.The data category cannot be determined at this time or does not fit into the other categories.The data consists of individual vector features, typicallyshapes
or adata objects
pointing
to a shape. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLcdModelMetadata.DataCategory[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RASTER
The data is organized in a 2D raster, typically anALcdImage
. The raster can contain color values or any type of measurement(s).- See Also:
-
VECTOR
The data consists of individual vector features, typicallyshapes
or adata objects
pointing
to a shape.- See Also:
-
MESH
The data contains raw 3D meshes.- See Also:
-
POINT_CLOUD
The data is a 3D point cloud. -
PANORAMA
The data contains panoramic images.- Since:
- 2020.1
-
UNKNOWN
The data category cannot be determined at this time or does not fit into the other categories.
-
-
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
-