public enum InputLanguage extends java.lang.Enum<InputLanguage>
Enum Constant and Description |
---|
SMT_LIB_2_6
The SMT-LIB version 2.6 language
|
SYGUS_2_1
The SyGuS version 2.1 language.
|
UNKNOWN
No language given.
|
Modifier and Type | Method and Description |
---|---|
static InputLanguage |
fromInt(int value) |
int |
getValue() |
static InputLanguage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputLanguage SMT_LIB_2_6
public static final InputLanguage SYGUS_2_1
public static final InputLanguage UNKNOWN
public static InputLanguage[] values()
for (InputLanguage c : InputLanguage.values()) System.out.println(c);
public static InputLanguage 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 static InputLanguage fromInt(int value) throws CVC5ApiException
CVC5ApiException
public int getValue()