Uses of Interface
org.bson.Transformer

Packages that use Transformer
org.bson Contains the base BSON classes and Encoder/Decoder. 
 

Uses of Transformer in org.bson
 

Methods in org.bson that return types with arguments of type Transformer
static List<Transformer> BSON.getDecodingHooks(Class c)
          Returns the decoding hook(s) associated with the specific class
static List<Transformer> BSON.getEncodingHooks(Class c)
          Returns the encoding hook(s) associated with the specified class
 

Methods in org.bson with parameters of type Transformer
static void BSON.addDecodingHook(Class c, Transformer t)
           
static void BSON.addEncodingHook(Class c, Transformer t)
           
static void BSON.removeDecodingHook(Class c, Transformer t)
          Remove a specific encoding hook for a specific class.
static void BSON.removeEncodingHook(Class c, Transformer t)
          Remove a specific encoding hook for a specific class.