Uses of Interface
com.basho.riak.client.convert.Converter

Packages that use Converter
com.basho.riak.client.bucket A bucket is a namespace abstraction provided by Riak, the API uses Bucket as the primary way to interact with data stored in Riak. 
com.basho.riak.client.builders These builders provide a fluid API for creating instances of some immutable (or mainly immutable classes) that have a large number of constructor parameters. 
com.basho.riak.client.convert Classes for converting Riak data into domain specific classes and back. 
com.basho.riak.client.operations The interfaces/classes that model the set of operations for talking to Riak. 
 

Uses of Converter in com.basho.riak.client.bucket
 

Constructors in com.basho.riak.client.bucket with parameters of type Converter
DomainBucket(Bucket bucket, ConflictResolver<T> resolver, Converter<T> converter, MutationProducer<T> mutationProducer, StoreMeta storeMeta, FetchMeta fetchMeta, DeleteMeta deleteMeta, Class<T> clazz, Retrier retrier)
          Create a new DomainBucket for clazz Class objects wrapped around bucket It is recommended to use the DomainBucketBuilder rather than this constructor.
 

Uses of Converter in com.basho.riak.client.builders
 

Methods in com.basho.riak.client.builders with parameters of type Converter
 DomainBucketBuilder<T> DomainBucketBuilder.withConverter(Converter<T> converter)
          The Converter to use on fetch and store operations on the built DomainBucket
 

Uses of Converter in com.basho.riak.client.convert
 

Classes in com.basho.riak.client.convert that implement Converter
 class JSONConverter<T>
          Converts a RiakObject's value to an instance of T.
 class PassThroughConverter
          For working with IRiakObject rather than domain types.
 

Uses of Converter in com.basho.riak.client.operations
 

Methods in com.basho.riak.client.operations with parameters of type Converter
 StoreObject<T> StoreObject.withConverter(Converter<T> converter)
          The Converter to use
 FetchObject<T> FetchObject.withConverter(Converter<T> converter)
          A Converter to use to convert the data fetched to some other type
 



Copyright © 2012. All Rights Reserved.