Uses of Interface
me.prettyprint.hector.api.beans.HCounterColumn

Packages that use HCounterColumn
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.model.thrift   
me.prettyprint.cassandra.service   
me.prettyprint.hector.api.beans   
me.prettyprint.hector.api.factory   
me.prettyprint.hector.api.mutation   
 

Uses of HCounterColumn in me.prettyprint.cassandra.model
 

Classes in me.prettyprint.cassandra.model that implement HCounterColumn
 class HCounterColumnImpl<N>
          Hector Counter Column definition.
 

Methods in me.prettyprint.cassandra.model that return HCounterColumn
 HCounterColumn<N> HCounterColumnImpl.apply(org.apache.cassandra.thrift.CounterColumn c)
           
 HCounterColumn<N> HCounterColumnImpl.apply(Long value, int ttl)
           
 HCounterColumn<N> HCounterColumnImpl.clear()
          Clear value, timestamp and ttl (the latter two set to '0') leaving only the column name
 HCounterColumn<N> HCounterColumnImpl.fromThrift(org.apache.cassandra.thrift.CounterColumn c)
           
 HCounterColumn<N> HCounterSuperColumnImpl.get(int i)
           
 HCounterColumn<N> CounterSliceImpl.getColumnByName(N columnName)
           
 HCounterColumn<N> HCounterColumnImpl.setName(N name)
           
 HCounterColumn<N> HCounterColumnImpl.setTtl(int ttl)
          Set the time-to-live value for this column in seconds.
 HCounterColumn<N> HCounterColumnImpl.setValue(Long value)
           
 

Methods in me.prettyprint.cassandra.model that return types with arguments of type HCounterColumn
 List<HCounterColumn<N>> HCounterSuperColumnImpl.getColumns()
           
 List<HCounterColumn<N>> CounterSliceImpl.getColumns()
           
 

Methods in me.prettyprint.cassandra.model with parameters of type HCounterColumn
<N> Mutator<K>
MutatorImpl.addCounter(K key, String cf, HCounterColumn<N> c)
           
 HCounterSuperColumn<SN,N> HCounterSuperColumnImpl.addSubCounterColumn(HCounterColumn<N> counterColumn)
           
<N> MutationResult
MutatorImpl.insertCounter(K key, String cf, HCounterColumn<N> c)
           
 

Method parameters in me.prettyprint.cassandra.model with type arguments of type HCounterColumn
 HCounterSuperColumn<SN,N> HCounterSuperColumnImpl.setSubcolumns(List<HCounterColumn<N>> counterSubcolumns)
           
 

Constructor parameters in me.prettyprint.cassandra.model with type arguments of type HCounterColumn
HCounterSuperColumnImpl(SN sName, List<HCounterColumn<N>> counterColumns, Serializer<SN> sNameSerializer, Serializer<N> nameSerializer)
           
 

Uses of HCounterColumn in me.prettyprint.cassandra.model.thrift
 

Methods in me.prettyprint.cassandra.model.thrift that return types with arguments of type HCounterColumn
 QueryResult<HCounterColumn<N>> ThriftCounterColumnQuery.execute()
           
 

Uses of HCounterColumn in me.prettyprint.cassandra.service
 

Methods in me.prettyprint.cassandra.service that return HCounterColumn
 HCounterColumn<N> SliceCounterIterator.next()
           
 

Method parameters in me.prettyprint.cassandra.service with type arguments of type HCounterColumn
 SliceCounterIterator SliceCounterIterator.setFilter(SliceFilter<HCounterColumn<N>> filter)
          Set a filter to determine which columns will be returned.
 

Uses of HCounterColumn in me.prettyprint.hector.api.beans
 

Methods in me.prettyprint.hector.api.beans that return HCounterColumn
 HCounterColumn<N> HCounterColumn.apply(Long value, int ttl)
           
 HCounterColumn<N> HCounterColumn.clear()
           
 HCounterColumn<N> HCounterSuperColumn.get(int i)
           
 HCounterColumn<N> CounterSlice.getColumnByName(N columnName)
           
 HCounterColumn<N> HCounterColumn.setName(N name)
           
 HCounterColumn<N> HCounterColumn.setTtl(int ttl)
           
 HCounterColumn<N> HCounterColumn.setValue(Long value)
           
 

Methods in me.prettyprint.hector.api.beans that return types with arguments of type HCounterColumn
 List<HCounterColumn<N>> HCounterSuperColumn.getColumns()
           
 List<HCounterColumn<N>> CounterSlice.getColumns()
           
 

Methods in me.prettyprint.hector.api.beans with parameters of type HCounterColumn
 HCounterSuperColumn<SN,N> HCounterSuperColumn.addSubCounterColumn(HCounterColumn<N> column)
           
 

Method parameters in me.prettyprint.hector.api.beans with type arguments of type HCounterColumn
 HCounterSuperColumn<SN,N> HCounterSuperColumn.setSubcolumns(List<HCounterColumn<N>> subcolumns)
           
 

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

Methods in me.prettyprint.hector.api.factory that return HCounterColumn
static
<N> HCounterColumn<N>
HFactory.createCounterColumn(N name, long value, Serializer<N> nameSerializer)
          Create a counter column with a name and long value
static HCounterColumn<String> HFactory.createCounterColumn(String name, long value)
          Convenient method for creating a counter column with a String name and long value
 

Method parameters in me.prettyprint.hector.api.factory with type arguments of type HCounterColumn
static
<SN,N> HCounterSuperColumn<SN,N>
HFactory.createCounterSuperColumn(SN name, List<HCounterColumn<N>> columns, Serializer<SN> superNameSerializer, Serializer<N> nameSerializer)
           
 

Uses of HCounterColumn in me.prettyprint.hector.api.mutation
 

Methods in me.prettyprint.hector.api.mutation with parameters of type HCounterColumn
<N> Mutator<K>
Mutator.addCounter(K key, String cf, HCounterColumn<N> c)
          Schedule an increment of a CounterColumn to be inserted in batch mode by Mutator.execute()
<N> MutationResult
Mutator.insertCounter(K key, String cf, HCounterColumn<N> c)
          Simple and immediate insertion (increment/decrement) of a counter
 



Copyright © 2013. All Rights Reserved.