Uses of Class
com.fasterxml.jackson.core.JsonParser.Feature

Packages that use JsonParser.Feature
com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing JSON parser (JsonParser) and generator (JsonParser) instances. 
com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. 
 

Uses of JsonParser.Feature in com.fasterxml.jackson.core
 

Methods in com.fasterxml.jackson.core that return JsonParser.Feature
static JsonParser.Feature JsonParser.Feature.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JsonParser.Feature[] JsonParser.Feature.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.fasterxml.jackson.core with parameters of type JsonParser.Feature
 JsonParser JsonParser.configure(JsonParser.Feature f, boolean state)
          Method for enabling or disabling specified feature (check JsonParser.Feature for list of features)
 JsonFactory JsonFactory.configure(JsonParser.Feature f, boolean state)
          Method for enabling or disabling specified parser feature (check JsonParser.Feature for list of features)
 JsonParser JsonParser.disable(JsonParser.Feature f)
          Method for disabling specified feature (check JsonParser.Feature for list of features)
 JsonFactory JsonFactory.disable(JsonParser.Feature f)
          Method for disabling specified parser features (check JsonParser.Feature for list of features)
 JsonParser JsonParser.enable(JsonParser.Feature f)
          Method for enabling specified parser feature (check JsonParser.Feature for list of features)
 JsonFactory JsonFactory.enable(JsonParser.Feature f)
          Method for enabling specified parser feature (check JsonParser.Feature for list of features)
 boolean JsonParser.isEnabled(JsonParser.Feature f)
          Method for checking whether specified JsonParser.Feature is enabled.
 boolean JsonFactory.isEnabled(JsonParser.Feature f)
          Checked whether specified parser feature is enabled.
 

Uses of JsonParser.Feature in com.fasterxml.jackson.core.util
 

Methods in com.fasterxml.jackson.core.util with parameters of type JsonParser.Feature
 JsonParser JsonParserDelegate.disable(JsonParser.Feature f)
           
 JsonParser JsonParserDelegate.enable(JsonParser.Feature f)
           
 boolean JsonParserDelegate.isEnabled(JsonParser.Feature f)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.