Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
Modifier and Type | Method and Description |
---|---|
TupleValue |
GettableByIndexData.getTupleValue(int i)
Return the
i th value as a tuple value. |
TupleValue |
BoundStatement.getTupleValue(int i)
Return the
i th value as a tuple value. |
TupleValue |
GettableByNameData.getTupleValue(String name)
Return the value for
name as a tuple value. |
TupleValue |
BoundStatement.getTupleValue(String name)
Return the value for
name as a tuple value. |
TupleValue |
AbstractGettableData.getTupleValue(String name)
Return the value for
name as a tuple value. |
TupleValue |
TupleType.newValue()
Returns a new empty value for this tuple type.
|
TupleValue |
TupleType.newValue(Object... values)
Returns a new value for this tuple type that uses the provided values for the components.
|
Modifier and Type | Method and Description |
---|---|
static TypeCodec<TupleValue> |
TypeCodec.tuple(TupleType type)
Return a newly-created codec for the given CQL tuple type.
|
Modifier and Type | Method and Description |
---|---|
T |
SettableByIndexData.setTupleValue(int i,
TupleValue v)
Sets the
i th value to the provided tuple value. |
BoundStatement |
BoundStatement.setTupleValue(int i,
TupleValue v)
Sets the
i th value to the provided tuple value. |
T |
SettableByNameData.setTupleValue(String name,
TupleValue v)
Sets the value for (all occurrences of) variable
name to the provided tuple value. |
BoundStatement |
BoundStatement.setTupleValue(String name,
TupleValue v)
Sets the value for (all occurrences of) variable
name to the provided tuple value. |
Copyright © 2012–2018. All rights reserved.