static enum WellDefinednessCheck.Type extends java.lang.Enum<WellDefinednessCheck.Type>
| Enum Constant and Description | 
|---|
BLOCK_CONTRACT  | 
CLASS_INVARIANT  | 
LOOP_INVARIANT  | 
OPERATION_CONTRACT  | 
| Modifier and Type | Method and Description | 
|---|---|
static WellDefinednessCheck.Type | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static WellDefinednessCheck.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WellDefinednessCheck.Type CLASS_INVARIANT
public static final WellDefinednessCheck.Type OPERATION_CONTRACT
public static final WellDefinednessCheck.Type LOOP_INVARIANT
public static final WellDefinednessCheck.Type BLOCK_CONTRACT
public static WellDefinednessCheck.Type[] values()
for (WellDefinednessCheck.Type c : WellDefinednessCheck.Type.values()) System.out.println(c);
public static WellDefinednessCheck.Type 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