public enum DataTypeId extends java.lang.Enum<DataTypeId>
Modifier and Type | Class and Description |
---|---|
static class |
DataTypeId.Attribute |
Enum Constant and Description |
---|
BIT_VECTOR
A bit vector type.
|
LOGIC_BOOLEAN
A boolean type.
|
LOGIC_INTEGER
An integer type.
|
LOGIC_REAL
A real type.
|
MAP
A mapping type.
|
UNKNOWN
Uninterpreted data, that should not be passed to solver.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getAttribute(DataTypeId.Attribute a,
java.util.List<java.lang.Object> params) |
boolean |
isLogic()
Checks whether the specified type is logical which means that it is purely
mathematical and is not associated with data types implemented in real hardware.
|
static DataTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataTypeId BIT_VECTOR
public static final DataTypeId LOGIC_BOOLEAN
public static final DataTypeId LOGIC_INTEGER
public static final DataTypeId LOGIC_REAL
public static final DataTypeId MAP
public static final DataTypeId UNKNOWN
public static DataTypeId[] values()
for (DataTypeId c : DataTypeId.values()) System.out.println(c);
public static DataTypeId 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 boolean isLogic()
true
if the type is logic or false
otherwise.public java.lang.Object getAttribute(DataTypeId.Attribute a, java.util.List<java.lang.Object> params)