Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
Modifier and Type | Method and Description |
---|---|
UDTValue |
GettableByIndexData.getUDTValue(int i)
Return the
i th value as a UDT value. |
UDTValue |
BoundStatement.getUDTValue(int i)
Return the
i th value as a UDT value. |
UDTValue |
GettableByNameData.getUDTValue(String name)
Return the value for
name as a UDT value. |
UDTValue |
BoundStatement.getUDTValue(String name)
Return the value for
name as a UDT value. |
UDTValue |
AbstractGettableData.getUDTValue(String name)
Return the value for
name as a UDT value. |
UDTValue |
UserType.newValue()
Returns a new empty value for this user type definition.
|
Modifier and Type | Method and Description |
---|---|
static TypeCodec<UDTValue> |
TypeCodec.userType(UserType type)
Return a newly-created codec for the given user-defined CQL type.
|
Modifier and Type | Method and Description |
---|---|
T |
SettableByIndexData.setUDTValue(int i,
UDTValue v)
Sets the
i th value to the provided UDT value. |
BoundStatement |
BoundStatement.setUDTValue(int i,
UDTValue v)
Sets the
i th value to the provided UDT value. |
T |
SettableByNameData.setUDTValue(String name,
UDTValue v)
Sets the value for (all occurrences of) variable
name to the provided UDT value. |
BoundStatement |
BoundStatement.setUDTValue(String name,
UDTValue v)
Sets the value for (all occurrences of) variable
name to the provided UDT value. |
Copyright © 2012–2023. All rights reserved.