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

Packages that use Row
org.apache.cassandra.config   
org.apache.cassandra.cql3   
org.apache.cassandra.cql3.statements   
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.config
 

Methods in org.apache.cassandra.config that return Row
static Row ColumnDefinition.readSchema(java.lang.String ksName, java.lang.String cfName)
           
 

Methods in org.apache.cassandra.config with parameters of type Row
static java.util.Map<java.lang.String,CFMetaData> KSMetaData.deserializeColumnFamilies(Row row)
          Deserialize ColumnFamilies from low-level schema representation, all of them belong to the same keyspace
static java.util.List<ColumnDefinition> ColumnDefinition.fromSchema(Row row, CFMetaData cfm)
          Deserialize columns from low-level representation
static KSMetaData KSMetaData.fromSchema(Row row, java.lang.Iterable<CFMetaData> cfms)
          Deserialize only Keyspace attributes without nested ColumnFamilies
static KSMetaData KSMetaData.fromSchema(Row serializedKs, Row serializedCFs)
          Deserialize Keyspace with nested ColumnFamilies
 

Uses of Row in org.apache.cassandra.cql3
 

Methods in org.apache.cassandra.cql3 with parameters of type Row
static UntypedResultSet QueryProcessor.resultify(java.lang.String queryString, Row row)
           
 

Uses of Row in org.apache.cassandra.cql3.statements
 

Method parameters in org.apache.cassandra.cql3.statements with type arguments of type Row
 java.util.List<CqlRow> SelectStatement.process(java.util.List<Row> rows)
           
 

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, boolean isPaging)
           
 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 © 2013 The Apache Software Foundation