Package | Description |
---|---|
org.apache.cassandra.db | |
org.apache.cassandra.db.filter |
Modifier and Type | Field and Description |
---|---|
QueryPath |
ReadCommand.queryPath |
Modifier and Type | Method and Description |
---|---|
void |
RowMutation.add(QueryPath path,
java.nio.ByteBuffer value,
long timestamp) |
void |
RowMutation.add(QueryPath path,
java.nio.ByteBuffer value,
long timestamp,
int timeToLive) |
void |
ColumnFamily.addColumn(QueryPath path,
java.nio.ByteBuffer value,
long timestamp) |
void |
ColumnFamily.addColumn(QueryPath path,
java.nio.ByteBuffer value,
long timestamp,
int timeToLive) |
void |
ColumnFamily.addCounter(QueryPath path,
long value) |
void |
RowMutation.addCounter(QueryPath path,
long value) |
void |
ColumnFamily.addTombstone(QueryPath path,
java.nio.ByteBuffer localDeletionTime,
long timestamp) |
void |
ColumnFamily.addTombstone(QueryPath path,
int localDeletionTime,
long timestamp) |
void |
RowMutation.delete(QueryPath path,
long timestamp) |
ColumnFamily |
ColumnFamilyStore.getColumnFamily(DecoratedKey key,
QueryPath path,
java.nio.ByteBuffer start,
java.nio.ByteBuffer finish,
boolean reversed,
int limit) |
Constructor and Description |
---|
ReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath queryPath,
byte cmdType) |
RetriedSliceFromReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath path,
SliceQueryFilter filter,
int originalCount) |
SliceByNamesReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath path,
java.util.Collection<java.nio.ByteBuffer> columnNames) |
SliceByNamesReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath path,
NamesQueryFilter filter) |
SliceFromReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath path,
java.nio.ByteBuffer start,
java.nio.ByteBuffer finish,
boolean reversed,
int count) |
SliceFromReadCommand(java.lang.String table,
java.nio.ByteBuffer key,
QueryPath path,
SliceQueryFilter filter) |
Modifier and Type | Field and Description |
---|---|
QueryPath |
QueryFilter.path |
Modifier and Type | Method and Description |
---|---|
static QueryPath |
QueryPath.column(java.nio.ByteBuffer columnName) |
static QueryPath |
QueryPath.deserialize(java.io.DataInput din) |
Modifier and Type | Method and Description |
---|---|
static QueryFilter |
QueryFilter.getIdentityFilter(DecoratedKey key,
QueryPath path)
return a QueryFilter object that includes every column in the row.
|
static QueryFilter |
QueryFilter.getNamesFilter(DecoratedKey key,
QueryPath path,
java.nio.ByteBuffer column)
convenience method for creating a name filter matching a single column
|
static QueryFilter |
QueryFilter.getNamesFilter(DecoratedKey key,
QueryPath path,
java.util.SortedSet<java.nio.ByteBuffer> columns) |
static QueryFilter |
QueryFilter.getSliceFilter(DecoratedKey key,
QueryPath path,
java.nio.ByteBuffer start,
java.nio.ByteBuffer finish,
boolean reversed,
int limit) |
Constructor and Description |
---|
QueryFilter(DecoratedKey key,
QueryPath path,
IDiskAtomFilter filter) |
Copyright © 2014 The Apache Software Foundation