Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
Modifier and Type | Method and Description |
---|---|
UDTValue |
TypeCodec.UDTCodec.deserialize(ByteBuffer bytes,
ProtocolVersion protocolVersion) |
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.
|
UDTValue |
TypeCodec.UDTCodec.parse(String value) |
Modifier and Type | Method and Description |
---|---|
String |
TypeCodec.UDTCodec.format(UDTValue value) |
ByteBuffer |
TypeCodec.UDTCodec.serialize(UDTValue value,
ProtocolVersion protocolVersion) |
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–2015. All rights reserved.