Java org.springframework.data.cassandra.core CassandraOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.cassandra.core CassandraOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.cassandra.core CassandraOperations.

The text is from its open source code.

Method

Tinsert(T entity)
Insert the given entity and return the entity if the insert was applied.
Listselect(String cql, Class entityClass)
Execute a SELECT query and convert the resulting items to a List of entities.
Listselect(Statement statement, Class entityClass)
Execute a SELECT query and convert the resulting items to a List of entities.
Listselect(Query query, Class entityClass)
Execute a SELECT query and convert the resulting items to a List of entities.
TselectOne(String cql, Class entityClass)
Execute a SELECT query and convert the resulting item to an entity.
TselectOne(Statement statement, Class entityClass)
Execute a SELECT query and convert the resulting item to an entity.
TselectOne(Query query, Class entityClass)
Execute a SELECT query and convert the resulting item to an entity.