Enum Class EffectorProcess.Status

All Implemented Interfaces:
Serializable, Comparable<EffectorProcess.Status>, Constable
Enclosing interface:
EffectorProcess

public static enum EffectorProcess.Status extends Enum<EffectorProcess.Status>
Represents the status of an effector process.
  • Enum Constant Details

    • PENDING

      public static final EffectorProcess.Status PENDING
      Just created, waiting in the queue to begin calculating the preview.
    • CALCULATING

      public static final EffectorProcess.Status CALCULATING
      Currently calculating the preview.
    • CALCULATED

      public static final EffectorProcess.Status CALCULATED
      The preview is ready, waiting for confirmation.
    • CALCULATION_FAILED

      public static final EffectorProcess.Status CALCULATION_FAILED
      Preview calculation failed, effects cannot be applied.
    • CALCULATION_STOPPED

      public static final EffectorProcess.Status CALCULATION_STOPPED
      Preview calculation was canceled, effects cannot be applied.
    • QUEUED

      public static final EffectorProcess.Status QUEUED
      Waiting in the queue to begin applying or reverting effects.
    • IN_PROGRESS

      public static final EffectorProcess.Status IN_PROGRESS
      Currently applying or reverting effects.
    • COMPLETED

      public static final EffectorProcess.Status COMPLETED
      Effect application successfully completed, the process is finished.
    • COMPLETED_WITH_ERRORS

      public static final EffectorProcess.Status 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

      public static final EffectorProcess.Status 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

      public static final EffectorProcess.Status APPLY_STOPPED
      Effect application was canceled. Some effects may have been applied. The process is finished.
  • Method Details

    • values

      public static EffectorProcess.Status[] 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

      public static EffectorProcess.Status valueOf(String name)
      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 name
      NullPointerException - if the argument is null