Uses of Class
com.fasterxml.jackson.core.JsonEncoding

Packages that use JsonEncoding
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.io   
com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses. 
 

Uses of JsonEncoding in com.fasterxml.jackson.core
 

Methods in com.fasterxml.jackson.core that return JsonEncoding
static JsonEncoding JsonEncoding.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JsonEncoding[] JsonEncoding.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 JsonEncoding
protected  Writer JsonFactory._createWriter(OutputStream out, JsonEncoding enc, IOContext ctxt)
           
 JsonGenerator JsonFactory.createJsonGenerator(File f, JsonEncoding enc)
          Method for constructing JSON generator for writing JSON content to specified file, overwriting contents it might have (or creating it if such file does not yet exist).
 JsonGenerator JsonFactory.createJsonGenerator(OutputStream out, JsonEncoding enc)
          Method for constructing JSON generator for writing JSON content using specified output stream.
 

Uses of JsonEncoding in com.fasterxml.jackson.core.io
 

Fields in com.fasterxml.jackson.core.io declared as JsonEncoding
protected  JsonEncoding IOContext._encoding
          Encoding used by the underlying stream, if known.
 

Methods in com.fasterxml.jackson.core.io that return JsonEncoding
 JsonEncoding IOContext.getEncoding()
           
 

Methods in com.fasterxml.jackson.core.io with parameters of type JsonEncoding
 void IOContext.setEncoding(JsonEncoding enc)
           
 

Uses of JsonEncoding in com.fasterxml.jackson.core.json
 

Methods in com.fasterxml.jackson.core.json that return JsonEncoding
 JsonEncoding ByteSourceJsonBootstrapper.detectEncoding()
          Method that should be called after constructing an instace.
 



Copyright © 2012 fasterxml.com. All Rights Reserved.