Uses of Class
org.codehaus.jackson.io.IOContext
-
Packages that use IOContext Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonParser) instances.org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses.org.codehaus.jackson.io This package contains I/O helper classes Jackson itself uses, but that are not exposed for external reuse. -
-
Uses of IOContext in org.codehaus.jackson
Methods in org.codehaus.jackson that return IOContext Modifier and Type Method Description protected IOContextJsonFactory. _createContext(Object srcRef, boolean resourceManaged)Overridable factory method that actually instantiates desired context object.Methods in org.codehaus.jackson with parameters of type IOContext Modifier and Type Method Description protected JsonGeneratorJsonFactory. _createJsonGenerator(Writer out, IOContext ctxt)Overridable factory method that actually instantiates generator for givenWriterand context object.protected JsonParserJsonFactory. _createJsonParser(byte[] data, int offset, int len, IOContext ctxt)Overridable factory method that actually instantiates parser using givenReaderobject for reading content passed as raw byte array.protected JsonParserJsonFactory. _createJsonParser(InputStream in, IOContext ctxt)Overridable factory method that actually instantiates desired parser givenInputStreamand context object.protected JsonParserJsonFactory. _createJsonParser(Reader r, IOContext ctxt)Overridable factory method that actually instantiates parser using givenReaderobject for reading content.protected JsonGeneratorJsonFactory. _createUTF8JsonGenerator(OutputStream out, IOContext ctxt)Overridable factory method that actually instantiates generator for givenOutputStreamand context object, using UTF-8 encoding.protected WriterJsonFactory. _createWriter(OutputStream out, JsonEncoding enc, IOContext ctxt) -
Uses of IOContext in org.codehaus.jackson.impl
Fields in org.codehaus.jackson.impl declared as IOContext Modifier and Type Field Description protected IOContextByteSourceBootstrapper. _contextprotected IOContextJsonParserBase. _ioContextI/O context for this reader.protected IOContextUtf8Generator. _ioContextprotected IOContextWriterBasedGenerator. _ioContextConstructors in org.codehaus.jackson.impl with parameters of type IOContext Constructor Description ByteSourceBootstrapper(IOContext ctxt, byte[] inputBuffer, int inputStart, int inputLen)ByteSourceBootstrapper(IOContext ctxt, InputStream in)JsonNumericParserBase(IOContext ctxt, int features)Deprecated.JsonParserBase(IOContext ctxt, int features)ReaderBasedParser(IOContext ctxt, int features, Reader r, ObjectCodec codec, CharsToNameCanonicalizer st)ReaderBasedParserBase(IOContext ctxt, int features, Reader r)Deprecated.StreamBasedParserBase(IOContext ctxt, int features, InputStream in, byte[] inputBuffer, int start, int end, boolean bufferRecyclable)Deprecated.Utf8Generator(IOContext ctxt, int features, ObjectCodec codec, OutputStream out)Utf8Generator(IOContext ctxt, int features, ObjectCodec codec, OutputStream out, byte[] outputBuffer, int outputOffset, boolean bufferRecyclable)Utf8StreamParser(IOContext ctxt, int features, InputStream in, ObjectCodec codec, BytesToNameCanonicalizer sym, byte[] inputBuffer, int start, int end, boolean bufferRecyclable)WriterBasedGenerator(IOContext ctxt, int features, ObjectCodec codec, Writer w) -
Uses of IOContext in org.codehaus.jackson.io
Fields in org.codehaus.jackson.io declared as IOContext Modifier and Type Field Description protected IOContextBaseReader. _contextprotected IOContextMergedStream. _contextprotected IOContextUTF8Writer. _contextMethods in org.codehaus.jackson.io with parameters of type IOContext Modifier and Type Method Description abstract InputStreamInputDecorator. decorate(IOContext ctxt, byte[] src, int offset, int length)Method called byJsonFactoryinstance when creating parser on given "raw" byte source.abstract InputStreamInputDecorator. decorate(IOContext ctxt, InputStream in)Method called byJsonFactoryinstance when creating parser given anInputStream, when this decorator has been registered.abstract ReaderInputDecorator. decorate(IOContext ctxt, Reader src)Method called byJsonFactoryinstance when creating parser given anReader, when this decorator has been registered.abstract OutputStreamOutputDecorator. decorate(IOContext ctxt, OutputStream out)Method called byJsonFactoryinstance when creating generator for givenOutputStream, when this decorator has been registered.abstract WriterOutputDecorator. decorate(IOContext ctxt, Writer w)Method called byJsonFactoryinstance when creating generator for givenWriter, when this decorator has been registered.Constructors in org.codehaus.jackson.io with parameters of type IOContext Constructor Description MergedStream(IOContext context, InputStream in, byte[] buf, int start, int end)UTF32Reader(IOContext ctxt, InputStream in, byte[] buf, int ptr, int len, boolean isBigEndian)UTF8Writer(IOContext ctxt, OutputStream out)
-