public abstract class ExecutionReturn
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static ExecutionReturn |
QUIT
Supposed to quit the program if returned.
|
static ExecutionReturn |
UNDEF
Indicates, that something is undefined.
|
static ExecutionReturn |
VOID
Indicates, that there is no value.
|
Constructor and Description |
---|
ExecutionReturn() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getScriptConstantRepresentation()
Returns the value as a constant in valid script syntax.
|
java.lang.String |
getStringRepresentation()
Returns a user-readable string representation of this instance.
|
boolean |
isStopExecution()
Indicates whether or not this execution return is a reason to interrupt script execution (e.g. error).
|
public static final ExecutionReturn VOID
public static final ExecutionReturn UNDEF
public static final ExecutionReturn QUIT
public boolean isStopExecution()
public java.lang.String getStringRepresentation()
public java.lang.String getScriptConstantRepresentation()