Uses of Class
org.apache.cassandra.db.marshal.AbstractType

Packages that use AbstractType
org.apache.cassandra.config   
org.apache.cassandra.db   
org.apache.cassandra.db.filter   
org.apache.cassandra.db.marshal   
org.apache.cassandra.dht   
org.apache.cassandra.io   
org.apache.cassandra.io.sstable   
org.apache.cassandra.io.util   
org.apache.cassandra.utils   
 

Uses of AbstractType in org.apache.cassandra.config
 

Fields in org.apache.cassandra.config declared as AbstractType
 AbstractType CFMetaData.comparator
           
 AbstractType CFMetaData.defaultValidator
           
 AbstractType CFMetaData.subcolumnComparator
           
 AbstractType ColumnDefinition.validator
           
 

Methods in org.apache.cassandra.config that return AbstractType
static AbstractType DatabaseDescriptor.getComparator(java.lang.String compareWith)
           
static AbstractType DatabaseDescriptor.getComparator(java.lang.String tableName, java.lang.String cfName)
           
static AbstractType DatabaseDescriptor.getSubComparator(java.lang.String tableName, java.lang.String cfName)
           
 AbstractType CFMetaData.getValueValidator(byte[] column)
           
static AbstractType DatabaseDescriptor.getValueValidator(java.lang.String keyspace, java.lang.String cf, byte[] column)
           
 

Methods in org.apache.cassandra.config with parameters of type AbstractType
static CFMetaData CFMetaData.newIndexMetadata(java.lang.String table, java.lang.String parentCf, ColumnDefinition info, AbstractType columnComparator)
           
 

Constructors in org.apache.cassandra.config with parameters of type AbstractType
CFMetaData(java.lang.String tableName, java.lang.String cfName, ColumnFamilyType cfType, ClockType clockType, AbstractType comparator, AbstractType subcolumnComparator, AbstractReconciler reconciler, java.lang.String comment, double rowCacheSize, boolean preloadRowCache, double keyCacheSize, double readRepairChance, int gcGraceSeconds, AbstractType defaultValidator, int minCompactionThreshold, int maxCompactionThreshold, java.util.Map<byte[],ColumnDefinition> column_metadata)
           
 

Uses of AbstractType in org.apache.cassandra.db
 

Methods in org.apache.cassandra.db that return AbstractType
 AbstractType ColumnFamily.getComparator()
           
 AbstractType ColumnFamilyStore.getComparator()
           
 AbstractType IColumnContainer.getComparator()
           
protected  AbstractType ReadCommand.getComparator()
           
 AbstractType SuperColumn.getComparator()
           
static AbstractType ColumnFamily.getComparatorFor(java.lang.String table, java.lang.String columnFamilyName, byte[] superColumnName)
           
 AbstractType ColumnFamily.getSubComparator()
           
 

Methods in org.apache.cassandra.db with parameters of type AbstractType
static RowIterator RowIteratorFactory.getIterator(java.util.Collection<Memtable> memtables, java.util.Collection<SSTableReader> sstables, DecoratedKey startWith, DecoratedKey stopAt, QueryFilter filter, AbstractType comparator, ColumnFamilyStore cfs)
          Get a row iterator over the provided memtables and sstables, between the provided keys and filtered by the queryfilter.
static IColumnIterator Memtable.getSliceIterator(DecoratedKey key, ColumnFamily cf, SliceQueryFilter filter, AbstractType typeComparator)
          obtain an iterator of columns in this memtable in the specified order starting from a given column.
 java.lang.String Column.getString(AbstractType comparator)
           
 java.lang.String ExpiringColumn.getString(AbstractType comparator)
           
 java.lang.String IColumn.getString(AbstractType comparator)
           
 java.lang.String SuperColumn.getString(AbstractType comparator)
           
static org.apache.cassandra.db.SuperColumnSerializer SuperColumn.serializer(AbstractType comparator, ClockType clockType, AbstractReconciler reconciler)
           
 

Constructors in org.apache.cassandra.db with parameters of type AbstractType
ColumnFamily(ColumnFamilyType type, ClockType clockType, AbstractType comparator, AbstractType subcolumnComparator, AbstractReconciler reconciler, java.lang.Integer cfid)
           
SuperColumn(byte[] name, AbstractType comparator, ClockType clockType, AbstractReconciler reconciler)
           
 

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

Methods in org.apache.cassandra.db.filter with parameters of type AbstractType
 java.util.Comparator<IColumn> IFilter.getColumnComparator(AbstractType comparator)
           
 java.util.Comparator<IColumn> NamesQueryFilter.getColumnComparator(AbstractType comparator)
           
 java.util.Comparator<IColumn> SliceQueryFilter.getColumnComparator(AbstractType comparator)
           
static IFilter QueryFilter.getFilter(SlicePredicate predicate, AbstractType comparator)
           
 IColumnIterator IFilter.getMemtableColumnIterator(ColumnFamily cf, DecoratedKey key, AbstractType comparator)
          returns an iterator that returns columns from the given memtable matching the Filter criteria in sorted order.
 IColumnIterator NamesQueryFilter.getMemtableColumnIterator(ColumnFamily cf, DecoratedKey key, AbstractType comparator)
           
 IColumnIterator QueryFilter.getMemtableColumnIterator(ColumnFamily cf, DecoratedKey key, AbstractType comparator)
           
 IColumnIterator SliceQueryFilter.getMemtableColumnIterator(ColumnFamily cf, DecoratedKey key, AbstractType comparator)
           
 IColumnIterator QueryFilter.getMemtableColumnIterator(Memtable memtable, AbstractType comparator)
           
 

Uses of AbstractType in org.apache.cassandra.db.marshal
 

Subclasses of AbstractType in org.apache.cassandra.db.marshal
 class AsciiType
           
 class BytesType
           
 class IntegerType
           
 class LexicalUUIDType
           
 class LocalByPartionerType<T extends Token>
          for sorting columns representing row keys in the row ordering as determined by a partitioner.
 class LongType
           
 class TimeUUIDType
           
 class UTF8Type
           
 

Uses of AbstractType in org.apache.cassandra.dht
 

Constructors in org.apache.cassandra.dht with parameters of type AbstractType
LocalPartitioner(AbstractType comparator)
           
LocalToken(AbstractType comparator, byte... token)
           
 

Uses of AbstractType in org.apache.cassandra.io
 

Methods in org.apache.cassandra.io that return AbstractType
 AbstractType LazilyCompactedRow.getComparator()
           
 

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

Methods in org.apache.cassandra.io.sstable that return AbstractType
 AbstractType SSTableReader.getColumnComparator()
           
 

Methods in org.apache.cassandra.io.sstable with parameters of type AbstractType
static java.util.Comparator<IndexHelper.IndexInfo> IndexHelper.getComparator(AbstractType nameComparator)
           
static int IndexHelper.indexFor(byte[] name, java.util.List<IndexHelper.IndexInfo> indexList, AbstractType comparator, boolean reversed)
          the index of the IndexInfo in which @name will be found.
 

Uses of AbstractType in org.apache.cassandra.io.util
 

Methods in org.apache.cassandra.io.util that return AbstractType
 AbstractType IIterableColumns.getComparator()
           
 

Uses of AbstractType in org.apache.cassandra.utils
 

Methods in org.apache.cassandra.utils that return AbstractType
static AbstractType FBUtilities.getComparator(java.lang.String compareWith)
           
 



Copyright © 2010 The Apache Software Foundation