| Package | Description |
|---|---|
| de.aristaflow.adept2.model.logmanagement |
| Modifier and Type | Method and Description |
|---|---|
DataType |
Column.getDataType()
Returns the data type of this column.
|
static DataType |
DataType.getDataTypeForObject(java.lang.Object value)
Returns the equivalent data type for the given object's type.
|
static DataType |
DataType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
DataType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CmpOperator.canCompare(DataType dataType)
Returns whether this comparison operator can generally work on the given
data type.
|
boolean |
CmpOperator.canCompare(DataType columnDataType,
DataType valueDataType)
Returns whether this operator can compare the two given data types.
|
| Constructor and Description |
|---|
Column(java.lang.String name,
DataType dataType)
Constructs a new
Column with the specified data type. |