Uses of Class
org.codehaus.jackson.smile.SmileGenerator.Feature

Packages that use SmileGenerator.Feature
org.codehaus.jackson.smile Package that contains experimental implementation of "Binary-Encoded JSON-Like" data format handlers (parser, generator, factory produce both, supporting constants). 
 

Uses of SmileGenerator.Feature in org.codehaus.jackson.smile
 

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

Methods in org.codehaus.jackson.smile with parameters of type SmileGenerator.Feature
 SmileFactory SmileFactory.configure(SmileGenerator.Feature f, boolean state)
          Method for enabling or disabling specified generator feature (check JsonGenerator.Feature for list of features)
 SmileGenerator SmileGenerator.configure(SmileGenerator.Feature f, boolean state)
           
 SmileFactory SmileFactory.disable(SmileGenerator.Feature f)
          Method for disabling specified generator feature (check JsonGenerator.Feature for list of features)
 SmileGenerator SmileGenerator.disable(SmileGenerator.Feature f)
           
 SmileFactory SmileFactory.enable(SmileGenerator.Feature f)
          Method for enabling specified generator features (check JsonGenerator.Feature for list of features)
 SmileGenerator SmileGenerator.enable(SmileGenerator.Feature f)
           
 boolean SmileFactory.isEnabled(SmileGenerator.Feature f)
          Check whether specified generator feature is enabled.
 boolean SmileGenerator.isEnabled(SmileGenerator.Feature f)