Uses of Class
org.apache.cassandra.db.Row

Packages that use Row
org.apache.cassandra.db   
org.apache.cassandra.db.index   
org.apache.cassandra.db.index.keys   
org.apache.cassandra.service   
 

Uses of Row in org.apache.cassandra.db
 

Fields in org.apache.cassandra.db with type parameters of type Row
 java.util.List<Row> RangeSliceReply.rows
           
 

Methods in org.apache.cassandra.db that return Row
 Row Row.RowSerializer.deserialize(java.io.DataInput dis, int version)
           
 Row Row.RowSerializer.deserialize(java.io.DataInput dis, int version, IColumnSerializer.Flag flag, ISortedColumns.Factory factory)
           
 Row Table.getRow(QueryFilter filter)
           
abstract  Row ReadCommand.getRow(Table table)
           
 Row SliceByNamesReadCommand.getRow(Table table)
           
 Row SliceFromReadCommand.getRow(Table table)
           
static Row SystemTable.readSchemaRow(java.lang.String ksName)
           
static Row SystemTable.readSchemaRow(java.lang.String ksName, java.lang.String cfName)
           
 Row ReadResponse.row()
           
 

Methods in org.apache.cassandra.db that return types with arguments of type Row
 java.util.List<Row> ColumnFamilyStore.filter(ColumnFamilyStore.AbstractScanIterator rowIterator, ExtendedFilter filter)
           
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.
 java.util.List<Row> ColumnFamilyStore.getRangeSlice(java.nio.ByteBuffer superColumn, AbstractBounds<RowPosition> range, int maxResults, IFilter columnFilter, java.util.List<IndexExpression> rowFilter)
           
 java.util.List<Row> ColumnFamilyStore.getRangeSlice(java.nio.ByteBuffer superColumn, AbstractBounds<RowPosition> range, int maxResults, IFilter columnFilter, java.util.List<IndexExpression> rowFilter, boolean maxIsColumns)
           
 java.util.List<Row> ColumnFamilyStore.search(java.util.List<IndexExpression> clause, AbstractBounds<RowPosition> range, int maxResults, IFilter dataFilter)
           
 java.util.List<Row> ColumnFamilyStore.search(java.util.List<IndexExpression> clause, AbstractBounds<RowPosition> range, int maxResults, IFilter dataFilter, boolean maxIsColumns)
           
static java.util.List<Row> SystemTable.serializedSchema()
           
static java.util.List<Row> SystemTable.serializedSchema(java.lang.String schemaCfName)
           
 

Methods in org.apache.cassandra.db with parameters of type Row
static ReadResponse ReadVerbHandler.getResponse(ReadCommand command, Row row)
           
 ReadCommand ReadCommand.maybeGenerateRetryCommand(RepairCallback handler, Row row)
           
 ReadCommand SliceFromReadCommand.maybeGenerateRetryCommand(RepairCallback handler, Row row)
           
 void ReadCommand.maybeTrim(Row row)
           
 void SliceFromReadCommand.maybeTrim(Row row)
           
 void Row.RowSerializer.serialize(Row row, java.io.DataOutput dos, int version)
           
 long Row.RowSerializer.serializedSize(Row row, int version)
           
 

Constructors in org.apache.cassandra.db with parameters of type Row
ReadResponse(Row row)
           
RowMutation(java.lang.String table, Row row)
           
 

Constructor parameters in org.apache.cassandra.db with type arguments of type Row
RangeSliceReply(java.util.List<Row> rows)
           
 

Uses of Row in org.apache.cassandra.db.index
 

Methods in org.apache.cassandra.db.index that return types with arguments of type Row
 java.util.List<Row> SecondaryIndexManager.search(java.util.List<IndexExpression> clause, AbstractBounds<RowPosition> range, int maxResults, IFilter dataFilter, boolean maxIsColumns)
          Performs a search across a number of column indexes TODO: add support for querying across index types
abstract  java.util.List<Row> SecondaryIndexSearcher.search(java.util.List<IndexExpression> clause, AbstractBounds<RowPosition> range, int maxResults, IFilter dataFilter, boolean maxIsColumns)
           
 

Uses of Row in org.apache.cassandra.db.index.keys
 

Methods in org.apache.cassandra.db.index.keys that return types with arguments of type Row
 java.util.List<Row> KeysSearcher.search(java.util.List<IndexExpression> clause, AbstractBounds<RowPosition> range, int maxResults, IFilter dataFilter, boolean maxIsColumns)
           
 

Uses of Row in org.apache.cassandra.service
 

Methods in org.apache.cassandra.service that return Row
 Row RepairCallback.get()
           
 Row RowDigestResolver.getData()
          Special case of resolve() so that CL.ONE reads never throw DigestMismatchException in the foreground
 Row RowRepairResolver.getData()
           
 Row RowDigestResolver.resolve()
           
 Row RowRepairResolver.resolve()
           
 

Methods in org.apache.cassandra.service that return types with arguments of type Row
 java.util.List<Row> RangeSliceResponseResolver.getData()
           
static java.util.List<Row> StorageProxy.getRangeSlice(RangeSliceCommand command, ConsistencyLevel consistency_level)
           
static java.util.List<Row> StorageProxy.read(java.util.List<ReadCommand> commands, ConsistencyLevel consistency_level)
          Performs the actual reading of a row out of the StorageService, fetching a specific set of column names from a given column family.
 java.lang.Iterable<Row> RangeSliceResponseResolver.resolve()
           
 



Copyright © 2012 The Apache Software Foundation