<T> JsonBeanReader<T> | 
JsonContext.createBeanReader(BeanType<T> beanType,
                com.fasterxml.jackson.core.JsonParser parser,
                JsonReadOptions options) | 
 Create and return a new bean reading for the bean type given the JSON options and source. 
 | 
<T> JsonBeanReader<T> | 
JsonContext.createBeanReader(Class<T> cls,
                com.fasterxml.jackson.core.JsonParser parser,
                JsonReadOptions options) | 
 Create and return a new bean reading for the bean type given the JSON options and source. 
 | 
<T> T | 
JsonContext.toBean(Class<T> cls,
      com.fasterxml.jackson.core.JsonParser parser,
      JsonReadOptions options) | 
 Convert json parser input into a Bean of a specific type additionally using JsonReadOptions.. 
 | 
<T> T | 
JsonContext.toBean(Class<T> rootType,
      Reader json,
      JsonReadOptions options) | 
 Convert json reader input into a Bean of a specific type additionally using JsonReadOptions. 
 | 
<T> T | 
JsonContext.toBean(Class<T> rootType,
      String json,
      JsonReadOptions options) | 
 Convert json string input into a Bean of a specific type additionally using JsonReadOptions. 
 | 
<T> List<T> | 
JsonContext.toList(Class<T> cls,
      com.fasterxml.jackson.core.JsonParser json,
      JsonReadOptions options) | 
 Convert json parser input into a list of beans of a specific type additionally using JsonReadOptions. 
 | 
<T> List<T> | 
JsonContext.toList(Class<T> rootType,
      Reader json,
      JsonReadOptions options) | 
 Convert json reader input into a list of beans of a specific type additionally using JsonReadOptions. 
 | 
<T> List<T> | 
JsonContext.toList(Class<T> rootType,
      String json,
      JsonReadOptions options) | 
 Convert json string input into a list of beans of a specific type additionally using JsonReadOptions. 
 |