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

Packages that use AbstractType
org.apache.cassandra.cli   
org.apache.cassandra.config   
org.apache.cassandra.cql   
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.cli
 

Methods in org.apache.cassandra.cli that return AbstractType
static AbstractType CliClient.getTypeByFunction(java.lang.String functionName)
          Get AbstractType by function name
 AbstractType CliClient.Function.getValidator()
           
 

Uses of AbstractType in org.apache.cassandra.config
 

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

Methods in org.apache.cassandra.config that return AbstractType
static AbstractType DatabaseDescriptor.getComparator(java.lang.CharSequence compareWith)
           
static AbstractType DatabaseDescriptor.getComparator(java.lang.String ksName, java.lang.String cfName)
           
 AbstractType CFMetaData.getComparatorFor(java.nio.ByteBuffer superColumnName)
           
 AbstractType CFMetaData.getDefaultValidator()
           
 AbstractType CFMetaData.getKeyValidator()
           
static AbstractType DatabaseDescriptor.getSubComparator(java.lang.String tableName, java.lang.String cfName)
           
 AbstractType ColumnDefinition.getValidator()
           
 AbstractType CFMetaData.getValueValidator(java.nio.ByteBuffer column)
           
static AbstractType DatabaseDescriptor.getValueValidator(java.lang.String keyspace, java.lang.String cf, java.nio.ByteBuffer column)
           
 

Methods in org.apache.cassandra.config with parameters of type AbstractType
 CFMetaData CFMetaData.defaultValidator(AbstractType prop)
           
 CFMetaData CFMetaData.keyValidator(AbstractType prop)
           
static CFMetaData CFMetaData.newIndexMetadata(CFMetaData parent, ColumnDefinition info, AbstractType columnComparator)
           
 void ColumnDefinition.setValidator(AbstractType validator)
           
 

Constructors in org.apache.cassandra.config with parameters of type AbstractType
CFMetaData(java.lang.String keyspace, java.lang.String name, ColumnFamilyType type, AbstractType comp, AbstractType subcc)
           
CFMetaData(java.lang.String keyspace, java.lang.String name, ColumnFamilyType type, AbstractType comp, AbstractType subcc)
           
ColumnDefinition(java.nio.ByteBuffer name, AbstractType validator, IndexType index_type, java.lang.String index_name)
           
 

Uses of AbstractType in org.apache.cassandra.cql
 

Methods in org.apache.cassandra.cql that return AbstractType
 AbstractType SelectStatement.getComparator(java.lang.String keyspace)
           
 AbstractType<?> UpdateStatement.getComparator(java.lang.String keyspace)
           
 AbstractType<?> UpdateStatement.getKeyType(java.lang.String keyspace)
           
 AbstractType SelectStatement.getValueValidator(java.lang.String keyspace, java.nio.ByteBuffer column)
           
 AbstractType<?> UpdateStatement.getValueValidator(java.lang.String keyspace, java.nio.ByteBuffer column)
           
 

Methods in org.apache.cassandra.cql with parameters of type AbstractType
 java.nio.ByteBuffer Term.getByteBuffer(AbstractType<?> validator)
          Returns the typed value, serialized to a ByteBuffer according to a comparator/validator.
 

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, java.nio.ByteBuffer 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 CounterColumn.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)
           
 

Constructors in org.apache.cassandra.db with parameters of type AbstractType
SuperColumn(java.nio.ByteBuffer name, AbstractType comparator)
           
 

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 AbstractCommutativeType
           
 class AbstractUUIDType
           
 class AsciiType
           
 class BytesType
           
 class CounterColumnType
           
 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
           
 class UUIDType
          Compares UUIDs using the following criteria:
- if count of supplied bytes is less than 16, compare counts
- compare UUID version fields
- nil UUID is always lesser
- compare timestamps if both are time-based
- compare lexically, unsigned msb-to-lsb comparison
 

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, java.nio.ByteBuffer 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, boolean reversed)
           
static int IndexHelper.indexFor(java.nio.ByteBuffer name, java.util.List<IndexHelper.IndexInfo> indexList, AbstractType comparator, boolean reversed)
          The index of the IndexInfo in which a scan starting with @name should begin.
 

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 © 2011 The Apache Software Foundation