| Package | Description | 
|---|---|
| org.codehaus.jackson.smile | 
 Package that contains experimental implementation of
 "Binary-Encoded JSON-Like" data format handlers (parser,
 generator, factory produce both, supporting constants). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
SmileGenerator | 
SmileGenerator.configure(SmileGenerator.Feature f,
         boolean state)  | 
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.disable(SmileGenerator.Feature f)  | 
SmileFactory | 
SmileFactory.disable(SmileGenerator.Feature f)
Method for disabling specified generator feature
 (check  
JsonGenerator.Feature for list of features) | 
SmileGenerator | 
SmileGenerator.enable(SmileGenerator.Feature f)  | 
SmileFactory | 
SmileFactory.enable(SmileGenerator.Feature f)
Method for enabling specified generator features
 (check  
JsonGenerator.Feature for list of features) | 
boolean | 
SmileGenerator.isEnabled(SmileGenerator.Feature f)  | 
boolean | 
SmileFactory.isEnabled(SmileGenerator.Feature f)
Check whether specified generator feature is enabled. 
 |