java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.pnfsoftware.jeb.core.units.code.asm.ChainedOperationResult.ContinuationStatus |
Status code to indicate if the result is meaningful and if the next operation should be performed.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ChainedOperationResult.ContinuationStatus | CONTINUE | Next operation should be performed; result is meaningful (but might be null). | |||||||||
ChainedOperationResult.ContinuationStatus | IGNORE | Next operation should be performed; result is meaningless. | |||||||||
ChainedOperationResult.ContinuationStatus | STOP | Do not perform more operations; result is meaningful (but might be null). |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean | isContinue() | ||||||||||
boolean | isIgnore() | ||||||||||
boolean | isStop() | ||||||||||
static ChainedOperationResult.ContinuationStatus | valueOf(String name) | ||||||||||
final static ContinuationStatus[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
|
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.
Next operation should be performed; result is meaningless. Should be used if an operation cannot decide.
Do not perform more operations; result is meaningful (but might be null). Should be used if an operation wants to have the final word.