Uses of Class
me.prettyprint.hector.api.ddl.ComparatorType

Packages that use ComparatorType
me.prettyprint.cassandra.model The model package defines the thrift/avro reflections used by hector to shield the specific types of the objects. 
me.prettyprint.cassandra.serializers   
me.prettyprint.cassandra.service   
me.prettyprint.hector.api The api package defines the main hector api entry points (aka the v2 API) 
me.prettyprint.hector.api.ddl The api.ddl package defines all Data Definition operations that hector supports which include: Adding new keyspaces Adding new column families Defining indices Deleting exisiting constructs A note should be taken that by server design, it is required that all DDL operations are to be performed in a serialized manner.
Cassandra cannot support two DDL operations issued at the same time. 
me.prettyprint.hector.api.factory   
 

Uses of ComparatorType in me.prettyprint.cassandra.model
 

Methods in me.prettyprint.cassandra.model that return ComparatorType
 ComparatorType BasicColumnFamilyDefinition.getComparatorType()
           
 ComparatorType BasicColumnFamilyDefinition.getSubComparatorType()
           
 

Methods in me.prettyprint.cassandra.model with parameters of type ComparatorType
 void BasicColumnFamilyDefinition.setComparatorType(ComparatorType comparitorType)
           
 void BasicColumnFamilyDefinition.setSubComparatorType(ComparatorType subComparitorType)
           
 

Uses of ComparatorType in me.prettyprint.cassandra.serializers
 

Methods in me.prettyprint.cassandra.serializers that return ComparatorType
 ComparatorType UUIDSerializer.getComparatorType()
           
 ComparatorType TimeUUIDSerializer.getComparatorType()
           
 ComparatorType StringSerializer.getComparatorType()
           
 ComparatorType LongSerializer.getComparatorType()
           
 ComparatorType DynamicCompositeSerializer.getComparatorType()
           
 ComparatorType CompositeSerializer.getComparatorType()
           
 ComparatorType BigIntegerSerializer.getComparatorType()
           
 ComparatorType BigDecimalSerializer.getComparatorType()
           
 ComparatorType AsciiSerializer.getComparatorType()
           
 ComparatorType AbstractSerializer.getComparatorType()
           
 

Uses of ComparatorType in me.prettyprint.cassandra.service
 

Methods in me.prettyprint.cassandra.service that return ComparatorType
 ComparatorType ThriftCfDef.getComparatorType()
           
 ComparatorType ThriftCfDef.getSubComparatorType()
           
 

Methods in me.prettyprint.cassandra.service with parameters of type ComparatorType
 void ThriftCfDef.setComparatorType(ComparatorType comparatorType)
           
 void ThriftCfDef.setSubComparatorType(ComparatorType subComparatorType)
           
 

Constructors in me.prettyprint.cassandra.service with parameters of type ComparatorType
ThriftCfDef(String keyspace, String columnFamilyName, ComparatorType comparatorType)
           
ThriftCfDef(String keyspace, String columnFamilyName, ComparatorType comparatorType, List<ColumnDefinition> columnMetadata)
           
 

Uses of ComparatorType in me.prettyprint.hector.api
 

Methods in me.prettyprint.hector.api that return ComparatorType
 ComparatorType Serializer.getComparatorType()
           
 

Uses of ComparatorType in me.prettyprint.hector.api.ddl
 

Fields in me.prettyprint.hector.api.ddl declared as ComparatorType
static ComparatorType ComparatorType.ASCIITYPE
           
static ComparatorType ComparatorType.BOOLEANTYPE
           
static ComparatorType ComparatorType.BYTESTYPE
           
static ComparatorType ComparatorType.COMPOSITETYPE
           
static ComparatorType ComparatorType.COUNTERTYPE
           
static ComparatorType ComparatorType.DATETYPE
           
static ComparatorType ComparatorType.DECIMALTYPE
           
static ComparatorType ComparatorType.DYNAMICCOMPOSITETYPE
           
static ComparatorType ComparatorType.FLOATTYPE
           
static ComparatorType ComparatorType.INT32TYPE
           
static ComparatorType ComparatorType.INTEGERTYPE
           
static ComparatorType ComparatorType.LEXICALUUIDTYPE
           
static ComparatorType ComparatorType.LOCALBYPARTITIONERTYPE
           
static ComparatorType ComparatorType.LONGTYPE
           
static ComparatorType ComparatorType.REVERSEDTYPE
           
static ComparatorType ComparatorType.TIMEUUIDTYPE
           
static ComparatorType ComparatorType.UTF8TYPE
           
static ComparatorType ComparatorType.UUIDTYPE
           
 

Methods in me.prettyprint.hector.api.ddl that return ComparatorType
static ComparatorType ComparatorType.getByClassName(String className)
           
 ComparatorType ColumnFamilyDefinition.getComparatorType()
           
 ComparatorType ColumnFamilyDefinition.getSubComparatorType()
           
 

Methods in me.prettyprint.hector.api.ddl with parameters of type ComparatorType
 void ColumnFamilyDefinition.setComparatorType(ComparatorType comparitorType)
           
 void ColumnFamilyDefinition.setSubComparatorType(ComparatorType subComparitorType)
           
 

Uses of ComparatorType in me.prettyprint.hector.api.factory
 

Methods in me.prettyprint.hector.api.factory with parameters of type ComparatorType
static ColumnFamilyDefinition HFactory.createColumnFamilyDefinition(String keyspace, String cfName, ComparatorType comparatorType)
          Create a column family for a given keyspace without comparator type.
static ColumnFamilyDefinition HFactory.createColumnFamilyDefinition(String keyspace, String cfName, ComparatorType comparatorType, List<ColumnDefinition> columnMetadata)
           
 



Copyright © 2013. All Rights Reserved.