Uses of Interface
org.springframework.data.cassandra.core.cql.RowMapper
Packages that use RowMapper
Package
Description
Apache Cassandra core support.
CQL core support.
-
Uses of RowMapper in org.springframework.data.cassandra.core
Methods in org.springframework.data.cassandra.core with parameters of type RowMapper -
Uses of RowMapper in org.springframework.data.cassandra.core.cql
Classes in org.springframework.data.cassandra.core.cql that implement RowMapperModifier and TypeClassDescriptionclassRowMapperimplementation that converts aRowinto a new instance of the specified mapped target class.classRowMapperimplementation that creates ajava.util.Mapfor each row, representing all columns as key-value pairs: one entry for each column, with the column name as key.classRowMapperimplementation that converts a row into a new instance of the specified mapped target class.classSingleColumnRowMapper<T extends @Nullable Object>RowMapperimplementation that converts a single column into a single result value per row.Methods in org.springframework.data.cassandra.core.cql that return RowMapperModifier and TypeMethodDescriptionReactiveCqlTemplate.getColumnMapRowMapper()Create a new RowMapper for reading columns as key-value pairs.protected <T> RowMapper<T> ReactiveCqlTemplate.getSingleColumnRowMapper(Class<T> requiredType) Create a new RowMapper for reading result objects from a single column.CassandraAccessor.newColumnMapRowMapper()Create a new RowMapper for reading columns as key-value pairs.protected <T> RowMapper<T> CassandraAccessor.newSingleColumnRowMapper(Class<T> requiredType) Create a new RowMapper for reading result objects from a single column.Methods in org.springframework.data.cassandra.core.cql with parameters of type RowMapperModifier and TypeMethodDescriptionprotected <T extends @Nullable Object>
AsyncRowMapperResultSetExtractor<T> AsyncCqlTemplate.newAsyncResultSetExtractor(RowMapper<T> rowMapper) Constructs a new instance of theResultSetExtractoradapting the givenRowMapper.protected <T extends @Nullable Object>
RowMapperResultSetExtractor<T> CqlTemplate.newResultSetExtractor(RowMapper<T> rowMapper) Constructs a new instance of theResultSetExtractoradapting the givenRowMapper.protected <T extends @Nullable Object>
RowMapperResultSetExtractor<T> CqlTemplate.newResultSetExtractor(RowMapper<T> rowMapper, int rowsExpected) Constructs a new instance of theResultSetExtractoradapting the givenRowMapper.protected <T> ResultSetExtractor<Stream<T>> CqlTemplate.newStreamExtractor(RowMapper<T> rowMapper) Constructs a new instance of theResultSetExtractoradapting the givenRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> Execute a query given static CQL, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) Query using a prepared statement, mapping each row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<List<T>> <T extends @Nullable Object>
CompletableFuture<List<T>> <T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) CqlOperations.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping each row to a Java object via aRowMapper.CqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.Execute a query given static CQL, mapping each row to a Java object via aRowMapper.Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping each row to a Java object via aRowMapper.CqlOperations.query(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.CqlOperations.query(PreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) Query using a prepared statement, mapping each row to a Java object via aRowMapper.CqlTemplate.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) CqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) CqlTemplate.query(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) CqlTemplate.query(PreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) <T> Flux<T> ReactiveCqlOperations.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping each row to a Java object via aRowMapper.<T> Flux<T> ReactiveCqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinder implementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> Flux<T> Execute a query given static CQL, mapping each row to a Java object via aRowMapper.<T> Flux<T> Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping each row to a Java object via aRowMapper.<T> Flux<T> ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> Flux<T> ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, RowMapper<T> rowMapper) Query using a prepared statement, mapping each row to a Java object via aRowMapper.<T> Flux<T> ReactiveCqlTemplate.query(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T> Flux<T> ReactiveCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Flux<T> <T> Flux<T> <T> Flux<T> ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Flux<T> ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<T> AsyncCqlOperations.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<T> AsyncCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<T> AsyncCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
CompletableFuture<T> AsyncCqlTemplate.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<T> AsyncCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<T> AsyncCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) <T extends @Nullable Object>
TCqlOperations.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
@Nullable TCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
@Nullable TCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping a single result row to a Java object via aRowMapper.<T extends @Nullable Object>
TCqlTemplate.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T extends @Nullable Object>
@Nullable TCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper) <T extends @Nullable Object>
@Nullable TCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) <T> Mono<T> ReactiveCqlOperations.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T> Mono<T> ReactiveCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper) Execute a query given static CQL, mapping a single result row to a Java object via aRowMapper.<T> Mono<T> ReactiveCqlOperations.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, mapping a single result row to a Java object via aRowMapper.<T> Mono<T> ReactiveCqlTemplate.queryForObject(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T> Mono<T> ReactiveCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper) <T> Mono<T> ReactiveCqlTemplate.queryForObject(String cql, RowMapper<T> rowMapper, Object... args) <T> Stream<T> CqlOperations.queryForStream(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T> Stream<T> CqlOperations.queryForStream(String cql, RowMapper<T> rowMapper, Object... args) <T> Stream<T> CqlOperations.queryForStream(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapperand turning it into an iterableStream.<T> Stream<T> CqlOperations.queryForStream(PreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) CqlTemplate.queryForStream(com.datastax.oss.driver.api.core.cql.Statement<?> statement, RowMapper<T> rowMapper) <T> Stream<T> CqlTemplate.queryForStream(String cql, RowMapper<T> rowMapper, Object... args) <T> Stream<T> CqlTemplate.queryForStream(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Stream<T> CqlTemplate.queryForStream(PreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) Constructors in org.springframework.data.cassandra.core.cql with parameters of type RowMapperModifierConstructorDescriptionAsyncRowMapperResultSetExtractor(RowMapper<T> rowMapper) Create a newAsyncRowMapperResultSetExtractor.ReactiveRowMapperResultSetExtractor(RowMapper<T> rowMapper) Create a newReactiveRowMapperResultSetExtractor.RowMapperResultSetExtractor(RowMapper<T> rowMapper) Create a newRowMapperResultSetExtractor.RowMapperResultSetExtractor(RowMapper<T> rowMapper, int rowsExpected) Create a newRowMapperResultSetExtractor.