Uses of Class
com.netflix.astyanax.model.ColumnFamily

Packages that use ColumnFamily
com.netflix.astyanax   
com.netflix.astyanax.mapping   
com.netflix.astyanax.model   
com.netflix.astyanax.query   
com.netflix.astyanax.recipes   
com.netflix.astyanax.shallows   
com.netflix.astyanax.thrift   
 

Uses of ColumnFamily in com.netflix.astyanax
 

Methods in com.netflix.astyanax with parameters of type ColumnFamily
 CassandraOperationTracer KeyspaceTracerFactory.newTracer(CassandraOperationType type, ColumnFamily<?,?> columnFamily)
          Create a tracer for a column family operation
<K,C> ColumnMutation
Keyspace.prepareColumnMutation(ColumnFamily<K,C> columnFamily, K rowKey, C column)
          Mutation for a single column
<K,C> ColumnFamilyQuery<K,C>
Keyspace.prepareQuery(ColumnFamily<K,C> cf)
          Starting point for constructing a query.
<K,C> OperationResult<Void>
Keyspace.truncateColumnFamily(ColumnFamily<K,C> columnFamily)
          Delete all rows in a column family
<K,C> ColumnListMutation<C>
MutationBatch.withRow(ColumnFamily<K,C> columnFamily, K rowKey)
          Mutate a row.
 

Method parameters in com.netflix.astyanax with type arguments of type ColumnFamily
<K> void
MutationBatch.deleteRow(Collection<ColumnFamily<K,?>> columnFamilies, K rowKey)
          Delete the row for all the specified column families
 

Uses of ColumnFamily in com.netflix.astyanax.mapping
 

Methods in com.netflix.astyanax.mapping with parameters of type ColumnFamily
<T,K> T
MappingUtil.get(ColumnFamily<K,String> columnFamily, K id, Class<T> itemClass)
          Get the specified item by its key/id
<T,K> List<T>
MappingUtil.getAll(ColumnFamily<K,String> columnFamily, Class<T> itemClass)
          Get all rows of the specified item
<T,K> void
MappingUtil.put(ColumnFamily<K,String> columnFamily, T item)
          Add/update the given item
<T,K> void
MappingUtil.remove(ColumnFamily<K,String> columnFamily, T item)
          Remove the given item
 

Uses of ColumnFamily in com.netflix.astyanax.model
 

Methods in com.netflix.astyanax.model that return ColumnFamily
static
<K,C> ColumnFamily<K,C>
ColumnFamily.newColumnFamily(String columnFamilyName, Serializer<K> keySerializer, Serializer<C> columnSerializer)
           
 

Uses of ColumnFamily in com.netflix.astyanax.query
 

Methods in com.netflix.astyanax.query with parameters of type ColumnFamily
 RowCopier<K,C> RowQuery.copyTo(ColumnFamily<K,C> columnFamily, K rowKey)
          Copy the results of the query to another column family
 

Uses of ColumnFamily in com.netflix.astyanax.recipes
 

Methods in com.netflix.astyanax.recipes with parameters of type ColumnFamily
static
<K,C,V> ReverseIndexQuery<K,C,V>
ReverseIndexQuery.newQuery(Keyspace ks, ColumnFamily<K,C> cf, String indexCf, Serializer<V> valSerializer)
           
 

Constructors in com.netflix.astyanax.recipes with parameters of type ColumnFamily
ReverseIndexQuery(Keyspace ks, ColumnFamily<K,C> cfData, String indexCf, Serializer<V> valSerializer)
           
UniquenessConstraint(Keyspace keyspace, ColumnFamily<K,C> columnFamily, com.google.common.base.Supplier<C> uniqueColumnSupplier)
           
UniquenessConstraintWithPrefix(Keyspace keyspace, ColumnFamily<K,String> columnFamily)
           
 

Uses of ColumnFamily in com.netflix.astyanax.shallows
 

Methods in com.netflix.astyanax.shallows with parameters of type ColumnFamily
 CassandraOperationTracer EmptyKeyspaceTracerFactory.newTracer(CassandraOperationType type, ColumnFamily<?,?> columnFamily)
           
 

Uses of ColumnFamily in com.netflix.astyanax.thrift
 

Fields in com.netflix.astyanax.thrift declared as ColumnFamily
protected  ColumnFamily<K,C> AbstractIndexQueryImpl.columnFamily
           
 

Methods in com.netflix.astyanax.thrift with parameters of type ColumnFamily
static
<K> org.apache.cassandra.thrift.ColumnParent
ThriftConverter.getColumnParent(ColumnFamily<?,?> columnFamily, ColumnPath<?> path)
          Construct a Hector ColumnParent based on the information in the query and the type of column family being queried.
static
<K> org.apache.cassandra.thrift.ColumnPath
ThriftConverter.getColumnPath(ColumnFamily<?,?> columnFamily, ColumnPath<?> path)
          Construct a Thrift ColumnPath based on the information in the query and the type of column family being queried.
<K,C> ColumnMutation
ThriftKeyspaceImpl.prepareColumnMutation(ColumnFamily<K,C> columnFamily, K rowKey, C column)
           
<K,C> ColumnFamilyQuery<K,C>
ThriftKeyspaceImpl.prepareQuery(ColumnFamily<K,C> cf)
           
<K,C> OperationResult<Void>
ThriftKeyspaceImpl.truncateColumnFamily(ColumnFamily<K,C> columnFamily)
           
<K,C> ColumnListMutation<C>
AbstractThriftMutationBatchImpl.withRow(ColumnFamily<K,C> columnFamily, K rowKey)
           
 

Method parameters in com.netflix.astyanax.thrift with type arguments of type ColumnFamily
<K> void
AbstractThriftMutationBatchImpl.deleteRow(Collection<ColumnFamily<K,?>> columnFamilies, K rowKey)
           
 

Constructors in com.netflix.astyanax.thrift with parameters of type ColumnFamily
AbstractIndexQueryImpl(ColumnFamily<K,C> columnFamily)
           
AbstractThriftAllRowsQueryImpl(ColumnFamily<K,C> columnFamily)
           
ThriftAllRowsImpl(AbstractThriftAllRowsQueryImpl<K,C> query, ColumnFamily<K,C> columnFamily)
           
ThriftColumnFamilyQueryImpl(ExecutorService executor, KeyspaceTracerFactory tracerFactory, Keyspace keyspace, ConnectionPool<org.apache.cassandra.thrift.Cassandra.Client> cp, ColumnFamily<K,C> columnFamily, ConsistencyLevel consistencyLevel, RetryPolicy retry)
           
 



Copyright © 2012. All Rights Reserved.