public interface Dao
| Modifier and Type | Method and Description |
|---|---|
Deletion |
deleteWhere(com.datastax.driver.core.querybuilder.Clause... whereConditions) |
<T> Deletion |
deleteWithKey(ColumnName<T> keyName,
T keyValue) |
<T,E> Deletion |
deleteWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2) |
<T,E,F> Deletion |
deleteWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2,
ColumnName<F> composedKeyNamePart3,
F composedKeyValuePart3) |
Deletion |
deleteWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts) |
Deletion |
deleteWithKey(String keyname,
Object keyValue) |
Deletion |
deleteWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2) |
Deletion |
deleteWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2,
String composedKeyNamePart3,
Object composedKeyValuePart3) |
ListReadWithUnit<RecordList> |
readAll() |
<T> ListReadWithUnit<RecordList> |
readListWithKey(ColumnName<T> name,
T value) |
<T,E> ListReadWithUnit<RecordList> |
readListWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2) |
ListReadWithUnit<RecordList> |
readListWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1) |
ListReadWithUnit<RecordList> |
readListWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2) |
ListReadWithUnit<RecordList> |
readWhere(com.datastax.driver.core.querybuilder.Clause... clauses) |
<T> SingleReadWithUnit<Record> |
readWithKey(ColumnName<T> keyName,
T keyValue) |
<T,E> SingleReadWithUnit<Record> |
readWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2) |
<T,E,F> SingleReadWithUnit<Record> |
readWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2,
ColumnName<F> composedKeyNamePart3,
F composedKeyValuePart3) |
SingleReadWithUnit<Record> |
readWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts) |
SingleReadWithUnit<Record> |
readWithKey(String keyName,
Object keyValue) |
SingleReadWithUnit<Record> |
readWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2) |
SingleReadWithUnit<Record> |
readWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2,
String composedKeyNamePart3,
Object composedKeyValuePart3) |
<T> ListReadWithUnit<RecordList> |
readWithKeys(ColumnName<T> name,
com.google.common.collect.ImmutableList<T> values) |
<T,E,F> ListReadWithUnit<RecordList> |
readWithKeys(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2,
ColumnName<F> composedKeyNamePart3,
com.google.common.collect.ImmutableList<F> composedKeyValuesPart3) |
<T,E> ListReadWithUnit<RecordList> |
readWithKeys(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
com.google.common.collect.ImmutableList<E> composedKeyValuesPart2) |
ListReadWithUnit<RecordList> |
readWithKeys(String name,
com.google.common.collect.ImmutableList<Object> values) |
ListReadWithUnit<RecordList> |
readWithKeys(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
com.google.common.collect.ImmutableList<Object> composedKeyValuesPart2) |
ListReadWithUnit<RecordList> |
readWithKeys(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2,
String composedKeyNamePart3,
com.google.common.collect.ImmutableList<Object> composedKeyValuesPart3) |
Dao |
withConsistency(com.datastax.driver.core.ConsistencyLevel consistencyLevel) |
Dao |
withInterceptor(QueryInterceptor queryInterceptor) |
Dao |
withoutTracking() |
Dao |
withRetryPolicy(com.datastax.driver.core.policies.RetryPolicy policy) |
Dao |
withSerialConsistency(com.datastax.driver.core.ConsistencyLevel serialConsistencyLevel) |
Dao |
withTracking() |
Insertion |
writeEntity(Object entity) |
UpdateWithUnitAndCounter |
writeWhere(com.datastax.driver.core.querybuilder.Clause... clauses) |
<T> WriteWithCounter |
writeWithKey(ColumnName<T> keyName,
T keyValue) |
<T,E> WriteWithCounter |
writeWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2) |
<T,E,F> WriteWithCounter |
writeWithKey(ColumnName<T> composedKeyNamePart1,
T composedKeyValuePart1,
ColumnName<E> composedKeyNamePart2,
E composedKeyValuePart2,
ColumnName<F> composedKeyNamePart3,
F composedKeyValuePart3) |
WriteWithCounter |
writeWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts) |
WriteWithCounter |
writeWithKey(String keyName,
Object keyValue) |
WriteWithCounter |
writeWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2) |
WriteWithCounter |
writeWithKey(String composedKeyNamePart1,
Object composedKeyValuePart1,
String composedKeyNamePart2,
Object composedKeyValuePart2,
String composedKeyNamePart3,
Object composedKeyValuePart3) |
Dao withConsistency(com.datastax.driver.core.ConsistencyLevel consistencyLevel)
consistencyLevel - the consistency level to useDao withSerialConsistency(com.datastax.driver.core.ConsistencyLevel serialConsistencyLevel)
serialConsistencyLevel - the serial consistency level to useDao withTracking()
Dao withoutTracking()
Dao withRetryPolicy(com.datastax.driver.core.policies.RetryPolicy policy)
policy - the retry policyDao withInterceptor(QueryInterceptor queryInterceptor)
queryInterceptor - the interceptorUpdateWithUnitAndCounter writeWhere(com.datastax.driver.core.querybuilder.Clause... clauses)
clauses - the clausesInsertion writeEntity(Object entity)
entity - the entity to writeWriteWithCounter writeWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts)
composedKeyParts - the composed keyWriteWithCounter writeWithKey(String keyName, Object keyValue)
keyName - the key namekeyValue - the key valueWriteWithCounter writeWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2)
composedKeyNamePart1 - the composed key name 1composedKeyValuePart1 - the composed key value 1composedKeyNamePart2 - the composed key name 2composedKeyValuePart2 - the composed key value 2WriteWithCounter writeWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2, String composedKeyNamePart3, Object composedKeyValuePart3)
composedKeyNamePart1 - the composed key name 1composedKeyValuePart1 - the composed key value 1composedKeyNamePart2 - the composed key name 2composedKeyValuePart2 - the composed key value 2composedKeyNamePart3 - the composed key name 3composedKeyValuePart3 - the composed key value 3<T> WriteWithCounter writeWithKey(ColumnName<T> keyName, T keyValue)
T - the name typekeyName - the key namekeyValue - the key value<T,E> WriteWithCounter writeWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2)
T - the name 1 typeE - the name 2 typecomposedKeyNamePart1 - the composed key name 1composedKeyValuePart1 - the composed key value 1composedKeyNamePart2 - the composed key name 2composedKeyValuePart2 - the composed key value 2<T,E,F> WriteWithCounter writeWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2, ColumnName<F> composedKeyNamePart3, F composedKeyValuePart3)
T - the name 1 typeE - the name 2 typeF - the name 3 typecomposedKeyNamePart1 - the composed key name 1composedKeyValuePart1 - the composed key value 1composedKeyNamePart2 - the composed key name 2composedKeyValuePart2 - the composed key value 2composedKeyNamePart3 - the composed key name 3composedKeyValuePart3 - the composed key value 3Deletion deleteWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts)
composedKeyParts - the composed keyDeletion deleteWithKey(String keyname, Object keyValue)
keyname - the key namekeyValue - the key valueDeletion deleteWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2)
composedKeyNamePart1 - the key name 1composedKeyValuePart1 - the key value 1composedKeyNamePart2 - the key name 2composedKeyValuePart2 - the key value 2Deletion deleteWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2, String composedKeyNamePart3, Object composedKeyValuePart3)
composedKeyNamePart1 - the key name 1composedKeyValuePart1 - the key value 1composedKeyNamePart2 - the key name 2composedKeyValuePart2 - the key value 2composedKeyNamePart3 - the key name 3composedKeyValuePart3 - the key value 3<T> Deletion deleteWithKey(ColumnName<T> keyName, T keyValue)
T - the name typekeyName - the key namekeyValue - the key value<T,E> Deletion deleteWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2)
T - the name 1 typeE - the name 2 typecomposedKeyNamePart1 - the key name 1composedKeyValuePart1 - the key value 1composedKeyNamePart2 - the key name 2composedKeyValuePart2 - the key value 2<T,E,F> Deletion deleteWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2, ColumnName<F> composedKeyNamePart3, F composedKeyValuePart3)
T - the name 1 typeE - the name 2 typeF - the name 3 typecomposedKeyNamePart1 - the key name 1composedKeyValuePart1 - the key value 1composedKeyNamePart2 - the key name 2composedKeyValuePart2 - the key value 2composedKeyNamePart3 - the key name 3composedKeyValuePart3 - the key value 3Deletion deleteWhere(com.datastax.driver.core.querybuilder.Clause... whereConditions)
whereConditions - the where conditionsSingleReadWithUnit<Record> readWithKey(com.google.common.collect.ImmutableMap<String,Object> composedKeyParts)
SingleReadWithUnit<Record> readWithKey(String keyName, Object keyValue)
SingleReadWithUnit<Record> readWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2)
SingleReadWithUnit<Record> readWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2, String composedKeyNamePart3, Object composedKeyValuePart3)
<T> SingleReadWithUnit<Record> readWithKey(ColumnName<T> keyName, T keyValue)
<T,E> SingleReadWithUnit<Record> readWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2)
<T,E,F> SingleReadWithUnit<Record> readWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2, ColumnName<F> composedKeyNamePart3, F composedKeyValuePart3)
ListReadWithUnit<RecordList> readWithKeys(String name, com.google.common.collect.ImmutableList<Object> values)
ListReadWithUnit<RecordList> readWithKeys(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, com.google.common.collect.ImmutableList<Object> composedKeyValuesPart2)
ListReadWithUnit<RecordList> readWithKeys(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2, String composedKeyNamePart3, com.google.common.collect.ImmutableList<Object> composedKeyValuesPart3)
<T> ListReadWithUnit<RecordList> readWithKeys(ColumnName<T> name, com.google.common.collect.ImmutableList<T> values)
<T,E> ListReadWithUnit<RecordList> readWithKeys(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, com.google.common.collect.ImmutableList<E> composedKeyValuesPart2)
<T,E,F> ListReadWithUnit<RecordList> readWithKeys(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2, ColumnName<F> composedKeyNamePart3, com.google.common.collect.ImmutableList<F> composedKeyValuesPart3)
ListReadWithUnit<RecordList> readListWithKey(String composedKeyNamePart1, Object composedKeyValuePart1)
ListReadWithUnit<RecordList> readListWithKey(String composedKeyNamePart1, Object composedKeyValuePart1, String composedKeyNamePart2, Object composedKeyValuePart2)
<T> ListReadWithUnit<RecordList> readListWithKey(ColumnName<T> name, T value)
<T,E> ListReadWithUnit<RecordList> readListWithKey(ColumnName<T> composedKeyNamePart1, T composedKeyValuePart1, ColumnName<E> composedKeyNamePart2, E composedKeyValuePart2)
ListReadWithUnit<RecordList> readAll()
ListReadWithUnit<RecordList> readWhere(com.datastax.driver.core.querybuilder.Clause... clauses)
Copyright © 2012–2015 1&1. All rights reserved.