public static enum IExecutionTermination.TerminationKind extends java.lang.Enum<IExecutionTermination.TerminationKind>
| Enum Constant and Description |
|---|
BLOCK_CONTRACT_EXCEPTIONAL
Termination with uncaught exception of the block contract validity branch.
|
BLOCK_CONTRACT_NORMAL
Normal termination without any exceptions of the block contract validity branch.
|
EXCEPTIONAL
Termination with uncaught exception.
|
LOOP_BODY
Partial termination of a loop body.
|
NORMAL
Normal termination without any exceptions.
|
| Modifier and Type | Method and Description |
|---|---|
static IExecutionTermination.TerminationKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IExecutionTermination.TerminationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IExecutionTermination.TerminationKind NORMAL
public static final IExecutionTermination.TerminationKind EXCEPTIONAL
public static final IExecutionTermination.TerminationKind LOOP_BODY
public static final IExecutionTermination.TerminationKind BLOCK_CONTRACT_NORMAL
public static final IExecutionTermination.TerminationKind BLOCK_CONTRACT_EXCEPTIONAL
public static IExecutionTermination.TerminationKind[] values()
for (IExecutionTermination.TerminationKind c : IExecutionTermination.TerminationKind.values()) System.out.println(c);
public static IExecutionTermination.TerminationKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null