Package com.luciad.fusion.pointcloud
Enum Class TLfnPointCloudPreprocessor.Progress.SourceDetails.Status
java.lang.Object
java.lang.Enum<TLfnPointCloudPreprocessor.Progress.SourceDetails.Status>
com.luciad.fusion.pointcloud.TLfnPointCloudPreprocessor.Progress.SourceDetails.Status
- All Implemented Interfaces:
Serializable
,Comparable<TLfnPointCloudPreprocessor.Progress.SourceDetails.Status>
,Constable
- Enclosing class:
TLfnPointCloudPreprocessor.Progress.SourceDetails
public static enum TLfnPointCloudPreprocessor.Progress.SourceDetails.Status
extends Enum<TLfnPointCloudPreprocessor.Progress.SourceDetails.Status>
Processing status of a data source.
- Since:
- 2018.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionProcessing failed with an exception.Processing has not started yet.Processing is ongoing.Processing was deemed unnecessary.Processing completed successfully. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
Processing has not started yet. -
PROCESSING
Processing is ongoing. -
SKIPPED
Processing was deemed unnecessary. -
FAILED
Processing failed with an exception. -
SUCCEEDED
Processing completed successfully.
-
-
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
-