Package | Description |
---|---|
org.bson |
Contains the base BSON classes and Encoder/Decoder.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<Transformer> |
BSON.getDecodingHooks(java.lang.Class c)
Returns the decoding hook(s) associated with the specific class
|
static java.util.List<Transformer> |
BSON.getEncodingHooks(java.lang.Class c)
Returns the encoding hook(s) associated with the specified class
|
Modifier and Type | Method and Description |
---|---|
static void |
BSON.addDecodingHook(java.lang.Class c,
Transformer t) |
static void |
BSON.addEncodingHook(java.lang.Class c,
Transformer t) |
static void |
BSON.removeDecodingHook(java.lang.Class c,
Transformer t)
Remove a specific encoding hook for a specific class.
|
static void |
BSON.removeEncodingHook(java.lang.Class c,
Transformer t)
Remove a specific encoding hook for a specific class.
|