Uses of Class
org.apache.cassandra.db.filter.QueryPath

Packages that use QueryPath
org.apache.cassandra.db   
org.apache.cassandra.db.filter   
 

Uses of QueryPath in org.apache.cassandra.db
 

Fields in org.apache.cassandra.db declared as QueryPath
 QueryPath ReadCommand.queryPath
           
 

Methods in org.apache.cassandra.db with parameters of type QueryPath
 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)
           
 

Constructors in org.apache.cassandra.db with parameters of type QueryPath
ReadCommand(java.lang.String table, java.nio.ByteBuffer key, QueryPath queryPath, byte cmdType)
           
RetriedSliceFromReadCommand(java.lang.String table, java.nio.ByteBuffer key, QueryPath path, java.nio.ByteBuffer start, java.nio.ByteBuffer finish, boolean reversed, int originalCount, int count)
           
SliceByNamesReadCommand(java.lang.String table, java.nio.ByteBuffer key, QueryPath path, java.util.Collection<java.nio.ByteBuffer> columnNames)
           
SliceFromReadCommand(java.lang.String table, java.nio.ByteBuffer key, QueryPath path, java.nio.ByteBuffer start, java.nio.ByteBuffer finish, boolean reversed, int count)
           
 

Uses of QueryPath in org.apache.cassandra.db.filter
 

Fields in org.apache.cassandra.db.filter declared as QueryPath
 QueryPath QueryFilter.path
           
 

Methods in org.apache.cassandra.db.filter that return QueryPath
static QueryPath QueryPath.column(java.nio.ByteBuffer columnName)
           
static QueryPath QueryPath.deserialize(java.io.DataInput din)
           
 

Methods in org.apache.cassandra.db.filter with parameters of type QueryPath
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)
           
 

Constructors in org.apache.cassandra.db.filter with parameters of type QueryPath
QueryFilter(DecoratedKey<?> key, QueryPath path, IFilter filter)
           
 



Copyright © 2012 The Apache Software Foundation