Enum Class PushBasedPlanThreadImplBase.Status

java.lang.Object
java.lang.Enum<PushBasedPlanThreadImplBase.Status>
se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased.PushBasedPlanThreadImplBase.Status
All Implemented Interfaces:
Serializable, Comparable<PushBasedPlanThreadImplBase.Status>, Constable
Enclosing class:
PushBasedPlanThreadImplBase

protected static enum PushBasedPlanThreadImplBase.Status extends Enum<PushBasedPlanThreadImplBase.Status>
  • Enum Constant Details

    • WAITING_TO_BE_STARTED

      public static final PushBasedPlanThreadImplBase.Status WAITING_TO_BE_STARTED
      The task has been created but its execution has not yet been started.
    • RUNNING

      public static final PushBasedPlanThreadImplBase.Status RUNNING
      The execution of the task is currently running.
    • COMPLETED_NOT_CONSUMED

      public static final PushBasedPlanThreadImplBase.Status COMPLETED_NOT_CONSUMED
      The execution of the task was completed successfully but its results have not yet been consumed completely.
    • COMPLETED_AND_CONSUMED

      public static final PushBasedPlanThreadImplBase.Status COMPLETED_AND_CONSUMED
      The execution of the task was completed successfully and its results have been consumed completely.
    • FAILED

      public static final PushBasedPlanThreadImplBase.Status FAILED
      The execution of the task failed with an exception; hence, the execution is not running anymore.
    • INTERRUPTED

      public static final PushBasedPlanThreadImplBase.Status INTERRUPTED
      The execution of the task was interrupted; hence, the execution is not running anymore.
  • Method Details

    • values

      public static PushBasedPlanThreadImplBase.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 PushBasedPlanThreadImplBase.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