# Enum: 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.

## Constant: CONTINUE
Description: 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.

## Constant: IGNORE
Description: Next operation should be performed; result is meaningless. Should be used if an operation cannot decide.

## Constant: STOP
Description: 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: isContinue
- return type: `boolean`

Description: Determine whether subsequent operations should continue.
return: true for [#CONTINUE](#CONTINUE)

## Method: isIgnore
- return type: `boolean`

Description: Determine whether this status ignores the result.
return: true for [#IGNORE](#IGNORE)

## Method: isStop
- return type: `boolean`

Description: Determine whether subsequent operations should stop.
return: true for [#STOP](#STOP)

## Static Method: valueOf
- parameter: `name`, type: `java.lang.String`
- return type: `com.pnfsoftware.jeb.core.units.code.asm.ChainedOperationResult.ContinuationStatus`


## Static Method: values
- return type: `com.pnfsoftware.jeb.core.units.code.asm.ChainedOperationResult.ContinuationStatus[]`


