Package org.nuxeo.ecm.core.bulk.message
Enum Class BulkStatus.State
- All Implemented Interfaces:
Serializable
,Comparable<BulkStatus.State>
,Constable
- Enclosing class:
- BulkStatus
Possible states of a bulk command:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe command has been aborted, the action might have been partially applied on the document set.The action has been applied to the document set, the command is completed.The scroller has terminated, the size of the document set is known and action is applied.The command has been submitted to the service.The scroller is running and materialize the document set.The command or the status is unknown. -
Method Summary
Modifier and TypeMethodDescriptionstatic BulkStatus.State
Returns the enum constant of this class with the specified name.static BulkStatus.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
The command or the status is unknown. -
SCHEDULED
The command has been submitted to the service. -
SCROLLING_RUNNING
The scroller is running and materialize the document set. -
RUNNING
The scroller has terminated, the size of the document set is known and action is applied. -
COMPLETED
The action has been applied to the document set, the command is completed. -
ABORTED
The command has been aborted, the action might have been partially applied on the document set.
-
-
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
-