Uses of Class
org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Packages that use BytesToNameCanonicalizer 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.smile Package that contains experimental implementation of "Binary-Encoded JSON-Like" data format handlers (parser, generator, factory produce both, supporting constants).org.codehaus.jackson.sym Internal implementation classes for efficient handling of of symbols in JSON (field names in Objects) -
-
Uses of BytesToNameCanonicalizer in org.codehaus.jackson
Fields in org.codehaus.jackson declared as BytesToNameCanonicalizer Modifier and Type Field Description protected BytesToNameCanonicalizerJsonFactory. _rootByteSymbolsAlternative to the basic symbol table, some stream-based parsers use different name canonicalization method. -
Uses of BytesToNameCanonicalizer in org.codehaus.jackson.impl
Fields in org.codehaus.jackson.impl declared as BytesToNameCanonicalizer Modifier and Type Field Description protected BytesToNameCanonicalizerUtf8StreamParser. _symbolsSymbol table that contains field names encountered so farMethods in org.codehaus.jackson.impl with parameters of type BytesToNameCanonicalizer Modifier and Type Method Description JsonParserByteSourceBootstrapper. constructParser(int features, ObjectCodec codec, BytesToNameCanonicalizer rootByteSymbols, CharsToNameCanonicalizer rootCharSymbols)Constructors in org.codehaus.jackson.impl with parameters of type BytesToNameCanonicalizer Constructor Description Utf8StreamParser(IOContext ctxt, int features, java.io.InputStream in, ObjectCodec codec, BytesToNameCanonicalizer sym, byte[] inputBuffer, int start, int end, boolean bufferRecyclable) -
Uses of BytesToNameCanonicalizer in org.codehaus.jackson.smile
Fields in org.codehaus.jackson.smile declared as BytesToNameCanonicalizer Modifier and Type Field Description protected BytesToNameCanonicalizerSmileParser. _symbolsSymbol table that contains field names encountered so farMethods in org.codehaus.jackson.smile with parameters of type BytesToNameCanonicalizer Modifier and Type Method Description SmileParserSmileParserBootstrapper. constructParser(int generalParserFeatures, int smileFeatures, ObjectCodec codec, BytesToNameCanonicalizer rootByteSymbols)Constructors in org.codehaus.jackson.smile with parameters of type BytesToNameCanonicalizer Constructor Description SmileParser(IOContext ctxt, int parserFeatures, int smileFeatures, ObjectCodec codec, BytesToNameCanonicalizer sym, java.io.InputStream in, byte[] inputBuffer, int start, int end, boolean bufferRecyclable) -
Uses of BytesToNameCanonicalizer in org.codehaus.jackson.sym
Fields in org.codehaus.jackson.sym declared as BytesToNameCanonicalizer Modifier and Type Field Description protected BytesToNameCanonicalizerBytesToNameCanonicalizer. _parentReference to the root symbol table, for child tables, so that they can merge table information back as necessary.Methods in org.codehaus.jackson.sym that return BytesToNameCanonicalizer Modifier and Type Method Description static BytesToNameCanonicalizerBytesToNameCanonicalizer. createRoot()Factory method to call to create a symbol table instance with a randomized seed value.protected static BytesToNameCanonicalizerBytesToNameCanonicalizer. createRoot(int hashSeed)Factory method that should only be called from unit tests, where seed value should remain the same.BytesToNameCanonicalizerBytesToNameCanonicalizer. makeChild(boolean canonicalize, boolean intern)Factory method used to create actual symbol table instance to use for parsing.
-