public enum OptionCategory extends java.lang.Enum<OptionCategory>
Enum Constant and Description |
---|
COMMON
Common options
|
EXPERT
Option available to expert users
|
REGULAR
Option available to regular users
|
UNDOCUMENTED
Undocumented options
|
Modifier and Type | Method and Description |
---|---|
static OptionCategory |
fromInt(int value) |
int |
getValue() |
static OptionCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionCategory REGULAR
public static final OptionCategory EXPERT
public static final OptionCategory COMMON
public static final OptionCategory UNDOCUMENTED
public static OptionCategory[] values()
for (OptionCategory c : OptionCategory.values()) System.out.println(c);
public static OptionCategory 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 OptionCategory fromInt(int value) throws CVC5ApiException
CVC5ApiException
public int getValue()