Uses of Class
org.apache.cassandra.dht.AbstractBounds

Packages that use AbstractBounds
org.apache.cassandra.db   
org.apache.cassandra.db.index   
org.apache.cassandra.db.index.keys   
org.apache.cassandra.dht   
org.apache.cassandra.utils   
 

Uses of AbstractBounds in org.apache.cassandra.db
 

Fields in org.apache.cassandra.db declared as AbstractBounds
 AbstractBounds IndexScanCommand.range
           
 AbstractBounds RangeSliceCommand.range
           
 

Methods in org.apache.cassandra.db with parameters of type AbstractBounds
 java.util.List<Row> ColumnFamilyStore.getRangeSlice(java.nio.ByteBuffer superColumn, AbstractBounds range, int maxResults, IFilter columnFilter)
          Fetch a range of rows and columns from memtables/sstables.
 java.util.List<Row> ColumnFamilyStore.search(IndexClause clause, AbstractBounds range, IFilter dataFilter)
           
 

Constructors in org.apache.cassandra.db with parameters of type AbstractBounds
IndexScanCommand(java.lang.String keyspace, java.lang.String column_family, IndexClause index_clause, SlicePredicate predicate, AbstractBounds range)
           
RangeSliceCommand(java.lang.String keyspace, ColumnParent column_parent, SlicePredicate predicate, AbstractBounds range, int max_keys)
           
RangeSliceCommand(java.lang.String keyspace, java.lang.String column_family, java.nio.ByteBuffer super_column, SlicePredicate predicate, AbstractBounds range, int max_keys)
           
 

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

Methods in org.apache.cassandra.db.index with parameters of type AbstractBounds
 java.util.List<Row> SecondaryIndexManager.search(IndexClause clause, AbstractBounds range, IFilter dataFilter)
          Performs a search across a number of column indexes TODO: add support for querying across index types
abstract  java.util.List<Row> SecondaryIndexSearcher.search(IndexClause clause, AbstractBounds range, IFilter dataFilter)
           
 

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

Methods in org.apache.cassandra.db.index.keys with parameters of type AbstractBounds
 java.util.List<Row> KeysSearcher.search(IndexClause clause, AbstractBounds range, IFilter dataFilter)
           
 

Uses of AbstractBounds in org.apache.cassandra.dht
 

Subclasses of AbstractBounds in org.apache.cassandra.dht
 class Bounds
           
 class Range
          A representation of the range that a node is responsible for on the DHT ring.
 

Methods in org.apache.cassandra.dht that return AbstractBounds
abstract  AbstractBounds AbstractBounds.createFrom(Token right)
           
 AbstractBounds Bounds.createFrom(Token token)
           
 AbstractBounds Range.createFrom(Token token)
           
 AbstractBounds AbstractBounds.AbstractBoundsSerializer.deserialize(java.io.DataInput in)
           
 

Methods in org.apache.cassandra.dht that return types with arguments of type AbstractBounds
static java.util.List<AbstractBounds> AbstractBounds.normalize(java.util.Collection<? extends AbstractBounds> bounds)
           
 Pair<AbstractBounds,AbstractBounds> AbstractBounds.split(Token token)
          Given token T and AbstractBounds ?L,R], returns Pair(?L,T], ?T,R]) (where ? means that the same type of Bounds is returned -- Range or Bounds -- as the original.) The original AbstractBounds must contain the token T.
 Pair<AbstractBounds,AbstractBounds> AbstractBounds.split(Token token)
          Given token T and AbstractBounds ?L,R], returns Pair(?L,T], ?T,R]) (where ? means that the same type of Bounds is returned -- Range or Bounds -- as the original.) The original AbstractBounds must contain the token T.
abstract  java.util.List<AbstractBounds> AbstractBounds.unwrap()
           
 java.util.List<AbstractBounds> Bounds.unwrap()
           
 java.util.List<AbstractBounds> Range.unwrap()
           
 

Methods in org.apache.cassandra.dht with parameters of type AbstractBounds
 void AbstractBounds.AbstractBoundsSerializer.serialize(AbstractBounds range, java.io.DataOutput out)
           
 long AbstractBounds.AbstractBoundsSerializer.serializedSize(AbstractBounds abstractBounds)
           
 

Method parameters in org.apache.cassandra.dht with type arguments of type AbstractBounds
static java.util.List<AbstractBounds> AbstractBounds.normalize(java.util.Collection<? extends AbstractBounds> bounds)
           
 

Uses of AbstractBounds in org.apache.cassandra.utils
 

Subclasses of AbstractBounds in org.apache.cassandra.utils
static class MerkleTree.TreeRange
          The public interface to a range in the tree.
 



Copyright © 2012 The Apache Software Foundation