Uses of Class
com.fasterxml.jackson.databind.util.ObjectBuffer

Packages that use ObjectBuffer
com.fasterxml.jackson.databind Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is via ObjectMapper class, as well as convenience methods included in JsonParser 
 

Uses of ObjectBuffer in com.fasterxml.jackson.databind
 

Fields in com.fasterxml.jackson.databind declared as ObjectBuffer
protected  ObjectBuffer DeserializationContext._objectBuffer
           
 

Methods in com.fasterxml.jackson.databind that return ObjectBuffer
 ObjectBuffer DeserializationContext.leaseObjectBuffer()
          Method that can be used to get access to a reusable ObjectBuffer, useful for efficiently constructing Object arrays and Lists.
 

Methods in com.fasterxml.jackson.databind with parameters of type ObjectBuffer
 void DeserializationContext.returnObjectBuffer(ObjectBuffer buf)
          Method to call to return object buffer previously leased with DeserializationContext.leaseObjectBuffer().
 



Copyright © 2012 fasterxml.com. All Rights Reserved.