Package | Description |
---|---|
org.voltdb |
Main package for VoltDB contains public interfaces.
|
Modifier and Type | Method and Description |
---|---|
static VoltType |
VoltType.get(byte val)
Statically create an enum value from the corresponding byte.
|
VoltType |
VoltTable.getColumnType(int index) |
abstract VoltType |
VoltTableRow.getColumnType(int columnIndex)
Return the
type of the column with the specified index. |
static VoltType |
VoltType.typeFromClass(java.lang.Class<?> cls)
Ascertain the most appropriate VoltType given a
java class.
|
static VoltType |
VoltType.typeFromObject(java.lang.Object obj)
Ascertain the most appropriate VoltType given a
java object.
|
static VoltType |
VoltType.typeFromString(java.lang.String str)
Converts string representations to an enum value.
|
static VoltType |
VoltType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VoltType[] |
VoltType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
VoltType.canExactlyRepresentAnyValueOf(VoltType otherType) |
java.lang.Object |
VoltTableRow.get(int columnIndex,
VoltType type)
Retrieve a value from the row by specifying the column index and the
type . |
java.lang.Object |
VoltTableRow.get(java.lang.String columnName,
VoltType type)
Retrieve a value from the row by specifying the column name and the
type . |
Constructor and Description |
---|
ColumnInfo(java.lang.String name,
VoltType type)
Construct an immutable ColumnInfo instance.
|