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, byte[] value, IClock clock)
           
 void RowMutation.add(QueryPath path, byte[] value, IClock clock, int timeToLive)
           
 void ColumnFamily.addColumn(QueryPath path, byte[] value, IClock clock)
           
 void ColumnFamily.addColumn(QueryPath path, byte[] value, IClock clock, int timeToLive)
           
 void ColumnFamily.addTombstone(QueryPath path, byte[] localDeletionTime, IClock clock)
           
 void RowMutation.delete(QueryPath path, IClock clock)
           
 void ColumnFamily.deleteColumn(QueryPath path, int localDeletionTime, IClock clock)
           
 ColumnFamily ColumnFamilyStore.getColumnFamily(DecoratedKey key, QueryPath path, byte[] start, byte[] finish, boolean reversed, int limit)
           
 ColumnFamily ColumnFamilyStore.getColumnFamily(DecoratedKey key, QueryPath path, byte[] start, byte[] finish, java.util.List<byte[]> bitmasks, boolean reversed, int limit)
           
 

Constructors in org.apache.cassandra.db with parameters of type QueryPath
ReadCommand(java.lang.String table, byte[] key, QueryPath queryPath, byte cmdType)
           
SliceByNamesReadCommand(java.lang.String table, byte[] key, QueryPath path, java.util.Collection<byte[]> columnNames)
           
SliceFromReadCommand(java.lang.String table, byte[] key, QueryPath path, byte[] start, byte[] finish, boolean reversed, int count)
           
SliceFromReadCommand(java.lang.String table, byte[] key, QueryPath path, byte[] start, byte[] finish, java.util.List<byte[]> bitmasks, 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(byte[] columnName)
           
static QueryPath QueryPath.deserialize(java.io.DataInputStream 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, byte[] column)
          convenience method for creating a name filter matching a single column
static QueryFilter QueryFilter.getNamesFilter(DecoratedKey key, QueryPath path, java.util.SortedSet<byte[]> columns)
           
static QueryFilter QueryFilter.getSliceFilter(DecoratedKey key, QueryPath path, byte[] start, byte[] finish, java.util.List<byte[]> bitmasks, boolean reversed, int limit)
           
 

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



Copyright © 2010 The Apache Software Foundation