Enum Class BulkOperationSubstatusType
java.lang.Object
java.lang.Enum<BulkOperationSubstatusType>
com.broadleafcommerce.bulkoperations.domain.types.BulkOperationSubstatusType
- All Implemented Interfaces:
Serializable
,Comparable<BulkOperationSubstatusType>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe bulk operation was cancelled before completion.The bulk operation failed to process.The bulk operation is currently initializing items.The bulk operation has been created, but hasn't started initializing or processing yet.The bulk operation is currently processing items.The bulk operation was completed successfully. -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isCanceled
(String subStatus) static boolean
static boolean
isInitializingItems
(String subStatus) static boolean
static boolean
isProcessing
(String subStatus) static boolean
static BulkOperationSubstatusType
Returns the enum constant of this class with the specified name.static BulkOperationSubstatusType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
The bulk operation has been created, but hasn't started initializing or processing yet. -
INITIALIZING_ITEMS
The bulk operation is currently initializing items. -
PROCESSING
The bulk operation is currently processing items. -
SUCCESS
The bulk operation was completed successfully. -
CANCELED
The bulk operation was cancelled before completion. -
FAILURE
The bulk operation failed to process.
-
-
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
-
isPending
-
isInitializingItems
-
isProcessing
-
isSuccess
-
isCanceled
-
isFailure
-