Uses of Interface
io.tarantool.driver.api.tuple.TarantoolField
-
Packages that use TarantoolField Package Description io.tarantool.driver.api.tuple Contains tuple representation classes and helpersio.tarantool.driver.core.tuple Contains implementations of tuple representation classes and helpers -
-
Uses of TarantoolField in io.tarantool.driver.api.tuple
Classes in io.tarantool.driver.api.tuple that implement TarantoolField Modifier and Type Class Description class
TarantoolNullField
Represents a field with empty value which serializes tomsgpack.NULL
Methods in io.tarantool.driver.api.tuple that return types with arguments of type TarantoolField Modifier and Type Method Description Optional<TarantoolField>
TarantoolTuple. getField(int fieldPosition)
Get a tuple field by its positionOptional<TarantoolField>
TarantoolTuple. getField(String fieldName)
Get a tuple field by its nameList<TarantoolField>
TarantoolTuple. getFields()
Get all tuple fields as listMethods in io.tarantool.driver.api.tuple with parameters of type TarantoolField Modifier and Type Method Description void
TarantoolTuple. setField(int fieldPosition, TarantoolField field)
Set a tuple field by field positionvoid
TarantoolTuple. setField(String fieldName, TarantoolField field)
Set a tuple field by field name -
Uses of TarantoolField in io.tarantool.driver.core.tuple
Classes in io.tarantool.driver.core.tuple that implement TarantoolField Modifier and Type Class Description class
TarantoolFieldImpl
Basic tuple field implementationMethods in io.tarantool.driver.core.tuple that return types with arguments of type TarantoolField Modifier and Type Method Description Optional<TarantoolField>
TarantoolTupleImpl. getField(int fieldPosition)
Optional<TarantoolField>
TarantoolTupleImpl. getField(String fieldName)
List<TarantoolField>
TarantoolTupleImpl. getFields()
Iterator<TarantoolField>
TarantoolTupleImpl. iterator()
Spliterator<TarantoolField>
TarantoolTupleImpl. spliterator()
Methods in io.tarantool.driver.core.tuple with parameters of type TarantoolField Modifier and Type Method Description void
TarantoolTupleImpl. setField(int fieldPosition, TarantoolField field)
void
TarantoolTupleImpl. setField(String fieldName, TarantoolField field)
Method parameters in io.tarantool.driver.core.tuple with type arguments of type TarantoolField Modifier and Type Method Description void
TarantoolTupleImpl. forEach(Consumer<? super TarantoolField> action)
-