Enum Class ChainedOperationResult.ContinuationStatus

java.lang.Object
java.lang.Enum<ChainedOperationResult.ContinuationStatus>
com.pnfsoftware.jeb.core.units.code.asm.ChainedOperationResult.ContinuationStatus
All Implemented Interfaces:
Serializable, Comparable<ChainedOperationResult.ContinuationStatus>, Constable
Enclosing class:
ChainedOperationResult<T>

public static enum ChainedOperationResult.ContinuationStatus extends Enum<ChainedOperationResult.ContinuationStatus>
Status code to indicate if the result is meaningful and if the next operation should be performed.
  • Enum Constant Details

    • CONTINUE

      public static final ChainedOperationResult.ContinuationStatus CONTINUE
      Next operation should be performed; result is meaningful (but might be null). Should be used if an operation provides an answer but there might be a better one.
    • IGNORE

      public static final ChainedOperationResult.ContinuationStatus IGNORE
      Next operation should be performed; result is meaningless. Should be used if an operation cannot decide.
    • STOP

      Do not perform more operations; result is meaningful (but might be null). Should be used if an operation wants to have the final word.
  • 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

      public static ChainedOperationResult.ContinuationStatus 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
    • isIgnore

      public boolean isIgnore()
    • isContinue

      public boolean isContinue()
    • isStop

      public boolean isStop()