Enum Class EffectorProcess.Status
- All Implemented Interfaces:
Serializable,Comparable<EffectorProcess.Status>,Constable
- Enclosing interface:
- EffectorProcess
Represents the status of an effector process.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEffect application was interrupted because Structure plugin was stopped.Effect application was canceled.The preview is ready, waiting for confirmation.Currently calculating the preview.Preview calculation failed, effects cannot be applied.Preview calculation was canceled, effects cannot be applied.Effect application successfully completed, the process is finished.Effect application completed, but there have been errors.Currently applying or reverting effects.Just created, waiting in the queue to begin calculating the preview.Waiting in the queue to begin applying or reverting effects. -
Method Summary
Modifier and TypeMethodDescriptionstatic EffectorProcess.StatusReturns the enum constant of this class with the specified name.static EffectorProcess.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
Just created, waiting in the queue to begin calculating the preview. -
CALCULATING
Currently calculating the preview. -
CALCULATED
The preview is ready, waiting for confirmation. -
CALCULATION_FAILED
Preview calculation failed, effects cannot be applied. -
CALCULATION_STOPPED
Preview calculation was canceled, effects cannot be applied. -
QUEUED
Waiting in the queue to begin applying or reverting effects. -
IN_PROGRESS
Currently applying or reverting effects. -
COMPLETED
Effect application successfully completed, the process is finished. -
COMPLETED_WITH_ERRORS
Effect application completed, but there have been errors. Some effects may have been applied, others failed. The process is finished. -
APPLY_INTERRUPTED
Effect application was interrupted because Structure plugin was stopped. Some effects may have been applied. The process can be resumed manually. -
APPLY_STOPPED
Effect application was canceled. Some effects may have been applied. The process is finished.
-
-
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
-