Modifier and Type | Method and Description |
---|---|
default TupleValue |
GettableById.getTupleValue(CqlIdentifier id)
Returns the value for the first occurrence of
id as a tuple value. |
default TupleValue |
GettableByIndex.getTupleValue(int i)
Returns the
i th value as a tuple value. |
default TupleValue |
GettableByName.getTupleValue(String name)
Returns the value for the first occurrence of
name as a tuple value. |
Modifier and Type | Method and Description |
---|---|
default SelfT |
SettableById.setTupleValue(CqlIdentifier id,
TupleValue v)
Sets the value for all occurrences of
id to the provided tuple value. |
default SelfT |
SettableByIndex.setTupleValue(int i,
TupleValue v)
Sets the
i th value to the provided tuple value. |
default SelfT |
SettableByName.setTupleValue(String name,
TupleValue v)
Sets the value for all occurrences of
name to the provided tuple value. |
Modifier and Type | Method and Description |
---|---|
TupleValue |
TupleType.newValue() |
TupleValue |
TupleType.newValue(Object... values)
Creates a new instance with the specified values for the fields.
|
Modifier and Type | Method and Description |
---|---|
static TypeCodec<TupleValue> |
TypeCodecs.tupleOf(TupleType cqlType)
Builds a new codec that maps a CQL tuple to the driver's
TupleValue , for the given type
definition. |
Modifier and Type | Field and Description |
---|---|
static GenericType<TupleValue> |
GenericType.TUPLE_VALUE |
Copyright © 2017–2024. All rights reserved.