public enum ConstraintKind extends java.lang.Enum<ConstraintKind>
Enum Constant and Description |
---|
FORMULA_BASED
Constant based on formula expressions (described by the Formula class and solved by the Z3_TEXT
solver).
|
Modifier and Type | Method and Description |
---|---|
SolverId |
getDefaultSolverId()
Returns the identifier of the solver that should be used to solve constraints of the given type
by default.
|
java.lang.Class<?> |
getInnerRepClass()
Returns the class used to describe internal representation of constraints of the given type.
|
static ConstraintKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstraintKind FORMULA_BASED
public static ConstraintKind[] values()
for (ConstraintKind c : ConstraintKind.values()) System.out.println(c);
public static ConstraintKind 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 nullpublic java.lang.Class<?> getInnerRepClass()
public SolverId getDefaultSolverId()