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

Packages that use QueryFilter
org.apache.cassandra.db   
org.apache.cassandra.db.filter   
org.apache.cassandra.io.sstable   
 

Uses of QueryFilter in org.apache.cassandra.db
 

Methods in org.apache.cassandra.db with parameters of type QueryFilter
 ColumnFamily ColumnFamilyStore.getColumnFamily(QueryFilter filter)
          get a list of columns starting from a given column, in a specified order.
static CloseableIterator<Row> RowIteratorFactory.getIterator(java.lang.Iterable<Memtable> memtables, java.util.Collection<SSTableReader> sstables, RowPosition startWith, RowPosition stopAt, QueryFilter filter, ColumnFamilyStore cfs)
          Get a row iterator over the provided memtables and sstables, between the provided keys and filtered by the queryfilter.
 Row Table.getRow(QueryFilter filter)
           
 ColumnFamily ColumnFamilyStore.getTopLevelColumns(QueryFilter filter, int gcBefore, boolean forCache)
           
 

Constructors in org.apache.cassandra.db with parameters of type QueryFilter
CollationController(ColumnFamilyStore cfs, boolean mutableColumns, QueryFilter filter, int gcBefore)
           
 

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

Methods in org.apache.cassandra.db.filter that return QueryFilter
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)
           
 

Uses of QueryFilter in org.apache.cassandra.io.sstable
 

Methods in org.apache.cassandra.io.sstable with parameters of type QueryFilter
 SSTableScanner SSTableReader.getScanner(QueryFilter filter)
           
 



Copyright © 2012 The Apache Software Foundation