Uses of Class
io.tarantool.driver.protocol.TarantoolIndexQuery
-
Packages that use TarantoolIndexQuery Package Description io.tarantool.driver.api.conditions Tuple filtering conditions used in select operationsio.tarantool.driver.core.proxy Contains interfaces and classes essential for proxy clientio.tarantool.driver.protocol Tarantool binary protocol primitives and helpers -
-
Uses of TarantoolIndexQuery in io.tarantool.driver.api.conditions
Methods in io.tarantool.driver.api.conditions that return TarantoolIndexQuery Modifier and Type Method Description TarantoolIndexQuery
Conditions. toIndexQuery(TarantoolMetadataOperations operations, TarantoolSpaceMetadata spaceMetadata)
-
Uses of TarantoolIndexQuery in io.tarantool.driver.core.proxy
Methods in io.tarantool.driver.core.proxy with parameters of type TarantoolIndexQuery Modifier and Type Method Description DeleteProxyOperation.Builder<T>
DeleteProxyOperation.Builder. withIndexQuery(TarantoolIndexQuery indexQuery)
UpdateProxyOperation.Builder<T>
UpdateProxyOperation.Builder. withIndexQuery(TarantoolIndexQuery indexQuery)
-
Uses of TarantoolIndexQuery in io.tarantool.driver.protocol
Methods in io.tarantool.driver.protocol that return TarantoolIndexQuery Modifier and Type Method Description TarantoolIndexQuery
TarantoolIndexQueryFactory. byName(int spaceId, String indexName)
Create a query for index by its nameTarantoolIndexQuery
TarantoolIndexQueryFactory. byName(String spaceName, String indexName)
Create a query for index by its nameTarantoolIndexQuery
TarantoolIndexQueryFactory. primary()
Create a query for primary indexTarantoolIndexQuery
TarantoolIndexQuery. withIteratorType(TarantoolIteratorType iteratorType)
Set iterator typeTarantoolIndexQuery
TarantoolIndexQuery. withKeyValues(List<?> keyValues)
Set list of key values to be matched with index key parts
-