@API(status=MAINTAINED,
     since="1.0")
public enum ShrinkingMode
extends java.lang.Enum<ShrinkingMode>
Property| Enum Constant and Description | 
|---|
| BOUNDEDShrinking is tried to a depth of 1000 steps maximum per value. | 
| FULLShrinking continues until no smaller value can be found that also falsifies the property. | 
| OFFNo shrinking for falsified values. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ShrinkingMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ShrinkingMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ShrinkingMode OFF
public static final ShrinkingMode BOUNDED
public static final ShrinkingMode FULL
public static ShrinkingMode[] values()
for (ShrinkingMode c : ShrinkingMode.values()) System.out.println(c);
public static ShrinkingMode 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