A B C D E F G H I J L M N O P Q R S T U V W _
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- acceptsPaddingOnRead() - Method in class com.fasterxml.jackson.core.Base64Variant
- addFlattenedActiveParsers(List<JsonParser>) - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
- addName(String, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- addName(String, int[], int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- addName(String, int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- addName(String, int, int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- allocBase64Buffer() - Method in class com.fasterxml.jackson.core.io.IOContext
-
Method for recycling or allocation byte buffer of "base 64 encode/decode" type.
- allocBase64Buffer(int) - Method in class com.fasterxml.jackson.core.io.IOContext
-
Variant of
IOContext.allocBase64Buffer()
that specifies smallest acceptable buffer size. - allocByteBuffer(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- allocByteBuffer(int, int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- allocCharBuffer(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- allocCharBuffer(int, int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- allocConcatBuffer() - Method in class com.fasterxml.jackson.core.io.IOContext
- allocNameCopyBuffer(int) - Method in class com.fasterxml.jackson.core.io.IOContext
- allocReadIOBuffer() - Method in class com.fasterxml.jackson.core.io.IOContext
-
Method for recycling or allocation byte buffer of "read I/O" type.
- allocReadIOBuffer(int) - Method in class com.fasterxml.jackson.core.io.IOContext
-
Variant of
IOContext.allocReadIOBuffer()
that specifies smallest acceptable buffer size. - allocTokenBuffer() - Method in class com.fasterxml.jackson.core.io.IOContext
- allocTokenBuffer(int) - Method in class com.fasterxml.jackson.core.io.IOContext
- allocWriteEncodingBuffer() - Method in class com.fasterxml.jackson.core.io.IOContext
-
Method for recycling or allocation byte buffer of "write encoding" type.
- allocWriteEncodingBuffer(int) - Method in class com.fasterxml.jackson.core.io.IOContext
-
Variant of
IOContext.allocWriteEncodingBuffer()
that specifies smallest acceptable buffer size. - ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that can be enabled to accept quoting of all character using backslash quoting mechanism: if not enabled, only characters that are explicitly listed by JSON specification can be thus escaped (see JSON spec for small list of these characters)
- ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER
instead - ALLOW_COMMENTS - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether parser will allow use of Java/C++ style comments (both '/'+'*' and '//' varieties) within parsed content or not.
- ALLOW_JAVA_COMMENTS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow use of Java/C/C++ style comments (both '/'+'*' and '//' varieties) within parsed content or not.
- ALLOW_LEADING_DECIMAL_POINT_FOR_NUMBERS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow JSON decimal numbers to start with a decimal point (like: .123).
- ALLOW_LEADING_DECIMAL_POINT_FOR_NUMBERS - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.
- ALLOW_LEADING_ZEROS_FOR_NUMBERS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow JSON integral numbers to start with additional (ignorable) zeroes (like: 000001).
- ALLOW_MISSING_VALUES - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature allows the support for "missing" values in a JSON array: missing value meaning sequence of two commas, without value in-between but only optional white space.
- ALLOW_MISSING_VALUES - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_MISSING_VALUES
instead - ALLOW_NON_NUMERIC_NUMBERS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that allows parser to recognize set of "Not-a-Number" (NaN) tokens as legal floating number values (similar to how many other data formats and programming language source code allows it).
- ALLOW_NON_NUMERIC_NUMBERS - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS
instead - ALLOW_NUMERIC_LEADING_ZEROS - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_LEADING_ZEROS_FOR_NUMBERS
instead - ALLOW_SINGLE_QUOTES - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow use of single quotes (apostrophe, character '\'') for quoting Strings (names and String values).
- ALLOW_SINGLE_QUOTES - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether parser will allow use of single quotes (apostrophe, character '\'') for quoting Strings (names and String values).
- ALLOW_TRAILING_COMMA - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether
JsonParser
will allow for a single trailing comma following the final value (in an Array) or member (in an Object). - ALLOW_TRAILING_COMMA - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_TRAILING_COMMA
instead - ALLOW_UNESCAPED_CONTROL_CHARS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow JSON Strings to contain unescaped control characters (ASCII characters with value less than 32, including tab and line feed characters) or not.
- ALLOW_UNQUOTED_CONTROL_CHARS - com.fasterxml.jackson.core.JsonParser.Feature
-
Deprecated.Since 2.10 use
JsonReadFeature.ALLOW_UNESCAPED_CONTROL_CHARS
instead - ALLOW_UNQUOTED_FIELD_NAMES - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow use of unquoted field names (which is allowed by Javascript, but not by JSON specification).
- ALLOW_UNQUOTED_FIELD_NAMES - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether parser will allow use of unquoted field names (which is allowed by Javascript, but not by JSON specification).
- ALLOW_YAML_COMMENTS - com.fasterxml.jackson.core.json.JsonReadFeature
-
Feature that determines whether parser will allow use of YAML comments, ones starting with '#' and continuing until the end of the line.
- ALLOW_YAML_COMMENTS - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether parser will allow use of YAML comments, ones starting with '#' and continuing until the end of the line.
- append(char) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- append(char) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- append(char) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- append(char[], int, int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- append(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- append(JsonPointer) - Method in class com.fasterxml.jackson.core.JsonPointer
-
Mutant factory method that will return `tail` if `this` instance is "empty" pointer, OR `this` instance if `tail` is "empty" pointer, OR Newly constructed
JsonPointer
instance that starts with all segments of `this`, followed by all segments of `tail`. - append(CharSequence) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- append(CharSequence, int, int) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- append(String, int, int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- appendFourBytes(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- appendQuoted(char[], int) - Method in class com.fasterxml.jackson.core.io.SerializedString
- appendQuoted(char[], int) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method that will append quoted characters of this String into given buffer.
- appendQuoted(StringBuilder, String) - Static method in class com.fasterxml.jackson.core.io.CharTypes
- appendQuotedUTF8(byte[], int) - Method in class com.fasterxml.jackson.core.io.SerializedString
- appendQuotedUTF8(byte[], int) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method that will append quoted UTF-8 bytes of this String into given buffer, if there is enough room; if not, returns -1.
- appendThreeBytes(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- appendTwoBytes(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- appendUnquoted(char[], int) - Method in class com.fasterxml.jackson.core.io.SerializedString
- appendUnquoted(char[], int) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method that will append unquoted characters of this String into given buffer.
- appendUnquotedUTF8(byte[], int) - Method in class com.fasterxml.jackson.core.io.SerializedString
- appendUnquotedUTF8(byte[], int) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method that will append unquoted ('raw') UTF-8 bytes of this String into given buffer.
- asBitmask() - Method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
Accessor for underlying bitmask
- asByteArray() - Method in enum com.fasterxml.jackson.core.JsonToken
- asCharArray() - Method in enum com.fasterxml.jackson.core.JsonToken
- asProperty - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
If type id is to be embedded as a regular property, name of the property; otherwise `null`.
- asQuotedChars() - Method in class com.fasterxml.jackson.core.io.SerializedString
-
Accessor for accessing value that has been quoted (escaped) using JSON quoting rules (using backslash-prefixed codes) into a char array.
- asQuotedChars() - Method in interface com.fasterxml.jackson.core.SerializableString
-
Returns JSON quoted form of the String, as character array.
- asQuotedUTF8() - Method in class com.fasterxml.jackson.core.io.SerializedString
-
Accessor for accessing value that has been quoted (escaped) using JSON quoting rules (using backslash-prefixed codes), and encoded using UTF-8 encoding into a byte array.
- asQuotedUTF8() - Method in interface com.fasterxml.jackson.core.SerializableString
-
Returns UTF-8 encoded version of JSON-quoted String.
- asString() - Method in enum com.fasterxml.jackson.core.JsonToken
- asToken() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that can be used for efficient type detection when using stream abstraction for traversing nodes.
- asUnquotedUTF8() - Method in class com.fasterxml.jackson.core.io.SerializedString
-
Accessor for accessing value as is (without JSON quoting (ecaping)) encoded as UTF-8 byte array.
- asUnquotedUTF8() - Method in interface com.fasterxml.jackson.core.SerializableString
-
Returns UTF-8 encoded version of unquoted String.
- at(JsonPointer) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for locating node specified by given JSON pointer instances.
- at(String) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Convenience method that is functionally equivalent to:
- AUTO_CLOSE_CONTENT - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that determines what happens when the generator is closed while there are still unmatched
JsonToken.START_ARRAY
orJsonToken.START_OBJECT
entries in output content. - AUTO_CLOSE_JSON_CONTENT - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that determines what happens when the generator is closed while there are still unmatched
JsonToken.START_ARRAY
orJsonToken.START_OBJECT
entries in output content. - AUTO_CLOSE_SOURCE - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether parser will automatically close underlying input source that is NOT owned by the parser.
- AUTO_CLOSE_SOURCE - com.fasterxml.jackson.core.StreamReadFeature
-
Feature that determines whether parser will automatically close underlying input source that is NOT owned by the parser.
- AUTO_CLOSE_TARGET - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that determines whether generator will automatically close underlying output target that is NOT owned by the generator.
- AUTO_CLOSE_TARGET - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that determines whether generator will automatically close underlying output target that is NOT owned by the generator.
- available() - Method in class com.fasterxml.jackson.core.io.MergedStream
B
- balloc(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- BASE64_VALUE_INVALID - Static variable in class com.fasterxml.jackson.core.Base64Variant
-
Marker used to denote ascii characters that do not correspond to a 6-bit value (in this variant), and is not used as a padding character.
- BASE64_VALUE_PADDING - Static variable in class com.fasterxml.jackson.core.Base64Variant
-
Marker used to denote ascii character (in decoding table) that is the padding character using this variant (if any).
- Base64Variant - Class in com.fasterxml.jackson.core
-
Class used to define specific details of which variant of Base64 encoding/decoding is to be used.
- Base64Variant(Base64Variant, String, boolean, char, int) - Constructor for class com.fasterxml.jackson.core.Base64Variant
-
"Copy constructor" that can be used when the base alphabet is identical to one used by another variant, but other details (padding, maximum line length) differ
- Base64Variant(Base64Variant, String, int) - Constructor for class com.fasterxml.jackson.core.Base64Variant
-
"Copy constructor" that can be used when the base alphabet is identical to one used by another variant except for the maximum line length (and obviously, name).
- Base64Variant(String, String, boolean, char, int) - Constructor for class com.fasterxml.jackson.core.Base64Variant
- Base64Variant.PaddingReadBehaviour - Enum in com.fasterxml.jackson.core
-
Defines how the Base64Variant deals with Padding while reading
- Base64Variants - Class in com.fasterxml.jackson.core
-
Container for commonly used Base64 variants:
Base64Variants.MIME
Base64Variants.MIME_NO_LINEFEEDS
Base64Variants.PEM
Base64Variants.MODIFIED_FOR_URL
See entries for full description of differences. - Base64Variants() - Constructor for class com.fasterxml.jackson.core.Base64Variants
- BD_MAX_INT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BD_MAX_LONG - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BD_MIN_INT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BD_MIN_LONG - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- beforeArrayValues(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after array start marker has been output, and right before the first value is to be output.
- beforeArrayValues(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- beforeArrayValues(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- beforeObjectEntries(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after object start marker has been output, and right before the field name of the first entry is to be output.
- beforeObjectEntries(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- beforeObjectEntries(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- BI_MAX_INT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BI_MAX_LONG - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BI_MIN_INT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BI_MIN_LONG - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- BIG_DECIMAL - com.fasterxml.jackson.core.JsonParser.NumberType
- BIG_INTEGER - com.fasterxml.jackson.core.JsonParser.NumberType
- bits() - Method in enum com.fasterxml.jackson.core.JsonEncoding
- bucketCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- bucketCount() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Method for checking number of primary hash buckets this symbol table uses.
- BufferRecycler - Class in com.fasterxml.jackson.core.util
-
This is a small utility class, whose main functionality is to allow simple reuse of raw byte/char buffers.
- BufferRecycler() - Constructor for class com.fasterxml.jackson.core.util.BufferRecycler
-
Default constructor used for creating instances of this default implementation.
- BufferRecycler(int, int) - Constructor for class com.fasterxml.jackson.core.util.BufferRecycler
-
Alternate constructor to be used by sub-classes, to allow customization of number of low-level buffers in use.
- BufferRecyclers - Class in com.fasterxml.jackson.core.util
-
Helper entity used to control access to simple buffer recyling scheme used for some encoding, decoding tasks.
- BufferRecyclers() - Constructor for class com.fasterxml.jackson.core.util.BufferRecyclers
- build() - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- build() - Method in class com.fasterxml.jackson.core.TSFBuilder
-
Method for constructing actual
TokenStreamFactory
instance, given configuration. - builder() - Static method in class com.fasterxml.jackson.core.JsonFactory
-
Main factory method to use for constructing
JsonFactory
instances with different configuration: creates and returns a builder for collecting configuration settings; instance created by callingbuild()
after all configuration set. - BYTE_BASE64_CODEC_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used for concatenating binary data that is either being encoded as base64 output, or decoded from base64 input.
- BYTE_READ_IO_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used for reading byte-based input.
- BYTE_WRITE_CONCAT_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used for temporarily concatenating output; used for example when requesting output as byte array.
- BYTE_WRITE_ENCODING_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used for temporarily storing encoded content; used for example by UTF-8 encoding writer
- ByteArrayBuilder - Class in com.fasterxml.jackson.core.util
-
Helper class that is similar to
ByteArrayOutputStream
in usage, but more geared to Jackson use cases internally. - ByteArrayBuilder() - Constructor for class com.fasterxml.jackson.core.util.ByteArrayBuilder
- ByteArrayBuilder(int) - Constructor for class com.fasterxml.jackson.core.util.ByteArrayBuilder
- ByteArrayBuilder(BufferRecycler) - Constructor for class com.fasterxml.jackson.core.util.ByteArrayBuilder
- ByteArrayBuilder(BufferRecycler, int) - Constructor for class com.fasterxml.jackson.core.util.ByteArrayBuilder
- ByteArrayFeeder - Interface in com.fasterxml.jackson.core.async
-
NonBlockingInputFeeder
implementation used when feeding data as byte arrays. - ByteBufferFeeder - Interface in com.fasterxml.jackson.core.async
-
NonBlockingInputFeeder
implementation used when feeding data asByteBuffer
contents. - byteBufferLength(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- ByteQuadsCanonicalizer - Class in com.fasterxml.jackson.core.sym
-
Replacement for
BytesToNameCanonicalizer
which aims at more localized memory access due to flattening of name quad data. - ByteSourceJsonBootstrapper - Class in com.fasterxml.jackson.core.json
-
This class is used to determine the encoding of byte stream that is to contain JSON content.
- ByteSourceJsonBootstrapper(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- ByteSourceJsonBootstrapper(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
C
- calcHash(char[], int, int) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Implementation of a hashing method for variable length Strings.
- calcHash(int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- calcHash(int[], int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- calcHash(int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- calcHash(int, int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- calcHash(String) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- calloc(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- CAN_WRITE_BINARY_NATIVELY - com.fasterxml.jackson.core.StreamWriteCapability
-
Capability that indicates that the data format is able to express binary data natively, without using textual encoding like Base64.
- CAN_WRITE_FORMATTED_NUMBERS - com.fasterxml.jackson.core.StreamWriteCapability
-
Capability that indicates that the data format is able to write "formatted numbers": that is, output of numbers is done as Strings and caller is allowed to pass in logical number values as Strings.
- canHandleBinaryNatively() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Introspection method that higher-level functionality may call to see whether underlying data format can read and write binary data natively; that is, embeded it as-is without using encodings such as Base64.
- canHandleBinaryNatively() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Introspection method that higher-level functionality may call to see whether underlying data format can read and write binary data natively; that is, embeded it as-is without using encodings such as Base64.
- canOmitFields() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Introspection method to call to check whether it is ok to omit writing of Object fields or not.
- canOmitFields() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- CANONICALIZE_FIELD_NAMES - com.fasterxml.jackson.core.JsonFactory.Feature
-
Feature that determines whether JSON object field names are to be canonicalized (details of how canonicalization is done then further specified by
JsonFactory.Feature.INTERN_FIELD_NAMES
). - canParseAsync() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- canParseAsync() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Introspection method that can be used to check whether this factory can create non-blocking parsers: parsers that do not use blocking I/O abstractions but instead use a
NonBlockingInputFeeder
. - canParseAsync() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to determine if this parser instance uses non-blocking ("asynchronous") input access for decoding or not.
- canParseAsync() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Introspection method that can be used to check whether this factory can create non-blocking parsers: parsers that do not use blocking I/O abstractions but instead use a
NonBlockingInputFeeder
. - canReadObjectId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Introspection method that may be called to see if the underlying data format supports some kind of Object Ids natively (many do not; for example, JSON doesn't).
- canReadObjectId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- canReadTypeId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Introspection method that may be called to see if the underlying data format supports some kind of Type Ids natively (many do not; for example, JSON doesn't).
- canReadTypeId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- canUseCharArrays() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Introspection method that can be used by base factory to check whether access using
char[]
is something that actual parser implementations can take advantage of, over having to useReader
. - canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that can be used to quickly check whether given schema is something that parsers and/or generators constructed by this factory could use.
- canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be used to verify that given schema can be used with this generator (using
JsonGenerator.setSchema(com.fasterxml.jackson.core.FormatSchema)
). - canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to verify that given schema can be used with this parser (using
JsonParser.setSchema(com.fasterxml.jackson.core.FormatSchema)
). - canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Method that can be used to quickly check whether given schema is something that parsers and/or generators constructed by this factory could use.
- canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- canWriteBinaryNatively() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Introspection method that may be called to see if the underlying data format supports "native" binary data; that is, an efficient output of binary content without encoding.
- canWriteBinaryNatively() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Introspection method to call to check whether it is possible to write numbers using
JsonGenerator.writeNumber(java.lang.String)
using possible custom format, or not. - canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- canWriteObjectId() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Introspection method that may be called to see if the underlying data format supports some kind of Object Ids natively (many do not; for example, JSON doesn't).
- canWriteObjectId() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- canWriteTypeId() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Introspection method that may be called to see if the underlying data format supports some kind of Type Ids natively (many do not; for example, JSON doesn't).
- canWriteTypeId() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- CHAR_CONCAT_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used by generators; for byte-backed generators for buffering of
String
values to output (before encoding into UTF-8), and for char-backed generators as actual concatenation buffer. - CHAR_NAME_COPY_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
For parsers, temporary buffer into which
char[]
for names is copied when requested as such; forWriterBasedGenerator
used for buffering duringwriteString(Reader)
operation (not commonly used). - CHAR_NULL - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- CHAR_TEXT_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Used through
TextBuffer
: directly by parsers (to concatenate String values) and indirectly viaSegmentedStringWriter
when serializing (databind levelObjectMapper
andObjectWriter
). - CHAR_TOKEN_BUFFER - Static variable in class com.fasterxml.jackson.core.util.BufferRecycler
-
Buffer used as input buffer for tokenization for character-based parsers.
- characterEscapes() - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- characterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Method for defining custom escapes factory uses for
JsonGenerator
s it creates. - CharacterEscapes - Class in com.fasterxml.jackson.core.io
-
Abstract base class that defines interface for customizing character escaping aspects for String values, for formats that use escaping.
- CharacterEscapes() - Constructor for class com.fasterxml.jackson.core.io.CharacterEscapes
- charBufferLength(int) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- charLength() - Method in class com.fasterxml.jackson.core.io.SerializedString
-
Returns length of the String as characters
- charLength() - Method in interface com.fasterxml.jackson.core.SerializableString
-
Returns length of the (unquoted) String as characters.
- CharsToNameCanonicalizer - Class in com.fasterxml.jackson.core.sym
-
This class is a kind of specialized type-safe Map, from char array to String value.
- charToHex(int) - Static method in class com.fasterxml.jackson.core.io.CharTypes
- CharTypes - Class in com.fasterxml.jackson.core.io
- CharTypes() - Constructor for class com.fasterxml.jackson.core.io.CharTypes
- checkValue(TokenFilter) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Method called to check whether value is to be included at current output position, either as Object property, Array element, or root value.
- child() - Method in class com.fasterxml.jackson.core.json.DupDetector
- clearAndGetParent() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
-
Method that can be used to both clear the accumulated references (specifically value set with
JsonReadContext.setCurrentValue(Object)
) that should not be retained, and returns parent (as wouldJsonReadContext.getParent()
do). - clearAndGetParent() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Method that can be used to both clear the accumulated references (specifically value set with
JsonWriteContext.setCurrentValue(Object)
) that should not be retained, and returns parent (as wouldJsonWriteContext.getParent()
do). - clearCurrentToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- clearCurrentToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- clearCurrentToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method called to "consume" the current token by effectively removing it so that
JsonParser.hasCurrentToken()
returns false, andJsonParser.getCurrentToken()
null). - clearCurrentToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- clearLocation() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
-
Method that allows to remove context information from this exception's message.
- close() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- close() - Method in class com.fasterxml.jackson.core.base.ParserBase
- close() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- close() - Method in class com.fasterxml.jackson.core.io.MergedStream
- close() - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- close() - Method in class com.fasterxml.jackson.core.io.UTF32Reader
- close() - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- close() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- close() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- close() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method called to close this generator, so that no more content can be written.
- close() - Method in class com.fasterxml.jackson.core.JsonParser
-
Closes the parser so that no further iteration or data access can be made; will also close the underlying input source if parser either owns the input source, or feature
JsonParser.Feature.AUTO_CLOSE_SOURCE
is enabled. - close() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- close() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- close() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- close() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
- closeArray(JsonGenerator) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- closeObject(JsonGenerator) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.json.JsonReadFeature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.JsonFactory.Feature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.JsonParser.Feature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.StreamReadFeature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collectDefaults() - Static method in enum com.fasterxml.jackson.core.StreamWriteFeature
-
Method that calculates bit set (flags) of all features that are enabled by default.
- collisionCount() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Method mostly needed by unit tests; calculates number of entries that are in collision list.
- com.fasterxml.jackson.core - package 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 (JsonGenerator
) instances. - com.fasterxml.jackson.core.async - package com.fasterxml.jackson.core.async
-
Package that contains abstractions needed to support optional non-blocking decoding (parsing) functionality.
- com.fasterxml.jackson.core.base - package com.fasterxml.jackson.core.base
-
Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).
- com.fasterxml.jackson.core.exc - package com.fasterxml.jackson.core.exc
-
Package for some of
JsonProcessingException
subtypes contained by streaming API. - com.fasterxml.jackson.core.filter - package com.fasterxml.jackson.core.filter
- com.fasterxml.jackson.core.format - package com.fasterxml.jackson.core.format
-
Package that contains interfaces needed for dynamic, pluggable format (auto)detection; as well as basic utility classes for simple format detection functionality.
- com.fasterxml.jackson.core.io - package com.fasterxml.jackson.core.io
- com.fasterxml.jackson.core.json - package com.fasterxml.jackson.core.json
-
JSON-specific parser and generator implementation classes that Jackson defines and uses.
- com.fasterxml.jackson.core.json.async - package com.fasterxml.jackson.core.json.async
-
Non-blocking ("async") JSON parser implementation.
- com.fasterxml.jackson.core.sym - package com.fasterxml.jackson.core.sym
-
Internal implementation classes for efficient handling of of symbols in JSON (field names in Objects)
- com.fasterxml.jackson.core.type - package com.fasterxml.jackson.core.type
-
Contains classes needed for type introspection, mostly used by data binding functionality.
- com.fasterxml.jackson.core.util - package com.fasterxml.jackson.core.util
-
Utility classes used by Jackson Core functionality.
- compareTo(TypeReference<T>) - Method in class com.fasterxml.jackson.core.type.TypeReference
-
The only reason we define this method (and require implementation of
Comparable
) is to prevent constructing a reference without type information. - compareTo(Version) - Method in class com.fasterxml.jackson.core.Version
- compile(String) - Static method in class com.fasterxml.jackson.core.JsonPointer
-
Factory method that parses given input and construct matching pointer instance, if it represents a valid JSON Pointer: if not, a
IllegalArgumentException
is thrown. - completeAndCoalesce(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
-
Method that will complete "manual" output process, coalesce content (if necessary) and return results as a contiguous buffer.
- configure(JsonReadFeature, boolean) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- configure(JsonReadFeature, boolean) - Method in class com.fasterxml.jackson.core.TSFBuilder
- configure(JsonWriteFeature, boolean) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- configure(JsonWriteFeature, boolean) - Method in class com.fasterxml.jackson.core.TSFBuilder
- configure(JsonFactory.Feature, boolean) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.since 2.10 use
TSFBuilder.configure(JsonFactory.Feature, boolean)
instead - configure(JsonFactory.Feature, boolean) - Method in class com.fasterxml.jackson.core.TSFBuilder
- configure(JsonGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for enabling or disabling specified generator feature (check
JsonGenerator.Feature
for list of features) - configure(JsonGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for enabling or disabling specified feature: check
JsonGenerator.Feature
for list of available features. - configure(JsonParser.Feature, boolean) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for enabling or disabling specified parser feature (check
JsonParser.Feature
for list of features) - configure(JsonParser.Feature, boolean) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for enabling or disabling specified feature (check
JsonParser.Feature
for list of features) - configure(StreamReadFeature, boolean) - Method in class com.fasterxml.jackson.core.TSFBuilder
- configure(StreamWriteFeature, boolean) - Method in class com.fasterxml.jackson.core.TSFBuilder
- construct(String, int, int[], int) - Static method in class com.fasterxml.jackson.core.sym.NameN
- constructParser(int, ObjectCodec, ByteQuadsCanonicalizer, CharsToNameCanonicalizer, int) - Method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- constructReader() - Method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- constructTextBuffer() - Method in class com.fasterxml.jackson.core.io.IOContext
- containedParsersCount() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Method that is most useful for debugging or testing; returns actual number of underlying parsers sequence was constructed with (nor just ones remaining active)
- containedType(int) - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for accessing definitions of contained ("child") types.
- containedTypeCount() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for checking how many contained types this type has.
- containedTypeName(int) - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for accessing name of type variable in indicated position.
- contentsAsArray() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- contentsAsDecimal() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Convenience method for converting contents of the buffer into a
BigDecimal
. - contentsAsDouble() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Convenience method for converting contents of the buffer into a Double value.
- contentsAsInt(boolean) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Specialized convenience method that will decode a 32-bit int, of at most 9 digits (and possible leading minus sign).
- contentsAsLong(boolean) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Specialized convenience method that will decode a 64-bit int, of at most 18 digits (and possible leading minus sign).
- contentsAsString() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Accessor that may be used to get the contents of this buffer as a single
String
regardless of whether they were collected in a segmented fashion or not: this typically require construction of the result String. - contentsToWriter(Writer) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Accessor that will write buffered contents using given
Writer
. - convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.core.base.ParserBase
- convertNumberToBigInteger() - Method in class com.fasterxml.jackson.core.base.ParserBase
- convertNumberToDouble() - Method in class com.fasterxml.jackson.core.base.ParserBase
- convertNumberToInt() - Method in class com.fasterxml.jackson.core.base.ParserBase
- convertNumberToLong() - Method in class com.fasterxml.jackson.core.base.ParserBase
- convertSurrogate(int) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
-
Method called to calculate Unicode code-point, from a surrogate pair.
- copy() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing a new
JsonFactory
that has the same settings as this instance, but is otherwise independent (i.e. - copyCurrentEvent(JsonParser) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for copying contents of the current event that the given parser instance points to.
- copyCurrentEvent(JsonParser) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- copyCurrentStructure(JsonParser) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for copying contents of the current event and following events that it encloses the given parser instance points to.
- copyCurrentStructure(JsonParser) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- copyHexBytes() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- copyHexChars() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- createArrayNode() - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for construct root level Array nodes for Tree Model instances.
- createArrayNode() - Method in class com.fasterxml.jackson.core.TreeCodec
- createChildArrayContext() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- createChildArrayContext(int, int) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- createChildArrayContext(TokenFilter, boolean) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- createChildArrayContext(Object) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- createChildObjectContext() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- createChildObjectContext(int, int) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- createChildObjectContext(TokenFilter, boolean) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- createChildObjectContext(Object) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- createDefaultInstance() - Static method in class com.fasterxml.jackson.core.util.Separators
- createFlattened(boolean, JsonParser, JsonParser) - Static method in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Method that will construct a sequence (possibly a sequence) that contains all given sub-parsers.
- createFlattened(JsonParser, JsonParser) - Static method in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Deprecated.
- createGenerator(DataOutput) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Convenience method for constructing generator that uses default encoding of the format (UTF-8 for JSON and most other data formats).
- createGenerator(DataOutput) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createGenerator(DataOutput, JsonEncoding) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing generator for writing content using specified
DataOutput
instance. - createGenerator(DataOutput, JsonEncoding) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.core.JsonFactory
-
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).
- createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createGenerator(OutputStream) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Convenience method for constructing generator that uses default encoding of the format (UTF-8 for JSON and most other data formats).
- createGenerator(OutputStream) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing JSON generator for writing JSON content using specified output stream.
- createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createGenerator(Writer) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing JSON generator for writing JSON content using specified Writer.
- createGenerator(Writer) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createInstance() - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- createInstance() - Method in interface com.fasterxml.jackson.core.util.Instantiatable
-
Method called to ensure that we have a non-blueprint object to use; it is either this object (if stateless), or a newly created object with separate state.
- createJsonGenerator(OutputStream) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createGenerator(OutputStream)
instead. - createJsonGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createGenerator(OutputStream, JsonEncoding)
instead. - createJsonGenerator(Writer) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createGenerator(Writer)
instead. - createJsonParser(byte[]) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(byte[])
instead. - createJsonParser(byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(byte[],int,int)
instead. - createJsonParser(File) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(File)
instead. - createJsonParser(InputStream) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(InputStream)
instead. - createJsonParser(Reader) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(Reader)
instead. - createJsonParser(String) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(String)
instead. - createJsonParser(URL) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.2, use
JsonFactory.createParser(URL)
instead. - createMatcher(JsonFactory, MatchStrength) - Method in class com.fasterxml.jackson.core.format.InputAccessor.Std
- createNonBlockingByteArrayParser() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Optional method for constructing parser for non-blocking parsing via
ByteArrayFeeder
interface (accessed usingJsonParser.getNonBlockingInputFeeder()
from constructed instance). - createNonBlockingByteArrayParser() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createObjectNode() - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for construct root level Object nodes for Tree Model instances.
- createObjectNode() - Method in class com.fasterxml.jackson.core.TreeCodec
- createParser(byte[]) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing the contents of given byte array.
- createParser(byte[]) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing the contents of given byte array.
- createParser(byte[], int, int) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(char[]) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing contents of given char array.
- createParser(char[]) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(char[], int, int) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing contents of given char array.
- createParser(char[], int, int) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(DataInput) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Optional method for constructing parser for reading contents from specified
DataInput
instance. - createParser(DataInput) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(File) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing JSON parser instance to parse contents of specified file.
- createParser(File) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(InputStream) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing JSON parser instance to parse the contents accessed via specified input stream.
- createParser(InputStream) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(Reader) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing the contents accessed via specified Reader.
- createParser(Reader) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(String) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing parser for parsing contents of given String.
- createParser(String) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParser(URL) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for constructing JSON parser instance to parse contents of resource reference by given URL.
- createParser(URL) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- createParserWithMatch() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Convenience method for trying to construct a
JsonParser
for parsing content which is assumed to be in detected data format. - createRoot() - Static method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Factory method to call to create a symbol table instance with a randomized seed value.
- createRoot() - Static method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Method called to create root canonicalizer for a
JsonFactory
instance. - createRoot(int) - Static method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- createRoot(int) - Static method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- createRootContext() - Static method in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Deprecated.Since 2.3; use method that takes argument
- createRootContext(int, int, DupDetector) - Static method in class com.fasterxml.jackson.core.json.JsonReadContext
- createRootContext(TokenFilter) - Static method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.core.json.JsonReadContext
- createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.core.json.JsonWriteContext
- currentName() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to get the name associated with the current token: for
JsonToken.FIELD_NAME
s it will be the same as whatJsonParser.getText()
returns; for field values it will be preceding field name; and for others (array values, root-level values) null. - currentToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- currentToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- currentToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor to find which token parser currently points to, if any; null will be returned if none.
- currentToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- currentTokenId() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- currentTokenId() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- currentTokenId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method similar to
JsonParser.getCurrentToken()
but that returns anint
instead ofJsonToken
(enum value). - currentTokenId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
D
- DataFormatDetector - Class in com.fasterxml.jackson.core.format
-
Simple helper class that allows data format (content type) auto-detection, given an ordered set of
JsonFactory
instances to use for actual low-level detection. - DataFormatDetector(JsonFactory...) - Constructor for class com.fasterxml.jackson.core.format.DataFormatDetector
- DataFormatDetector(Collection<JsonFactory>) - Constructor for class com.fasterxml.jackson.core.format.DataFormatDetector
- DataFormatMatcher - Class in com.fasterxml.jackson.core.format
-
Result object constructed by
DataFormatDetector
when requested to detect format of given input data. - DataFormatMatcher(InputStream, byte[], int, int, JsonFactory, MatchStrength) - Constructor for class com.fasterxml.jackson.core.format.DataFormatMatcher
- DataOutputAsStream - Class in com.fasterxml.jackson.core.io
-
Helper class to support use of
DataOutput
for output, directly, without caller having to provide for implementation. - DataOutputAsStream(DataOutput) - Constructor for class com.fasterxml.jackson.core.io.DataOutputAsStream
- decode(String) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Convenience method for decoding contents of a Base64-encoded String, using this variant's settings.
- decode(String, ByteArrayBuilder) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Convenience method for decoding contents of a Base64-encoded String, using this variant's settings and appending decoded binary data using provided
ByteArrayBuilder
. - decodeBase64Byte(byte) - Method in class com.fasterxml.jackson.core.Base64Variant
- decodeBase64Char(char) - Method in class com.fasterxml.jackson.core.Base64Variant
- decodeBase64Char(int) - Method in class com.fasterxml.jackson.core.Base64Variant
- decorate(IOContext, byte[], int, int) - Method in class com.fasterxml.jackson.core.io.InputDecorator
-
Method called by
JsonFactory
instance when creating parser on given "raw" byte source. - decorate(IOContext, DataInput) - Method in class com.fasterxml.jackson.core.io.InputDecorator
-
Method called by
JsonFactory
instance when creating parser given anDataInput
, when this decorator has been registered. - decorate(IOContext, InputStream) - Method in class com.fasterxml.jackson.core.io.InputDecorator
-
Method called by
JsonFactory
instance when creating parser given anInputStream
, when this decorator has been registered. - decorate(IOContext, OutputStream) - Method in class com.fasterxml.jackson.core.io.OutputDecorator
-
Method called by
JsonFactory
instance when creating generator for givenOutputStream
, when this decorator has been registered. - decorate(IOContext, Reader) - Method in class com.fasterxml.jackson.core.io.InputDecorator
-
Method called by
JsonFactory
instance when creating parser given anReader
, when this decorator has been registered. - decorate(IOContext, Writer) - Method in class com.fasterxml.jackson.core.io.OutputDecorator
-
Method called by
JsonFactory
instance when creating generator for givenWriter
, when this decorator has been registered. - DEFAULT_BINARY_WRITE_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.JsonGenerator
-
Default set of
StreamReadCapability
ies for typical binary formats, to use either as-is, or as a base with possible differences. - DEFAULT_FACTORY_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.JsonFactory
-
Bitfield (set of flags) of all factory features that are enabled by default.
- DEFAULT_FACTORY_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.TSFBuilder
-
Bitfield (set of flags) of all factory features that are enabled by default.
- DEFAULT_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.JsonFactory
-
Bitfield (set of flags) of all generator features that are enabled by default.
- DEFAULT_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.TSFBuilder
-
Bitfield (set of flags) of all generator features that are enabled by default.
- DEFAULT_MAX_INPUT_LOOKAHEAD - Static variable in class com.fasterxml.jackson.core.format.DataFormatDetector
-
By default we will look ahead at most 64 bytes; in most cases, much less (4 bytes or so) is needed, but we will allow bit more leniency to support data formats that need more complex heuristics.
- DEFAULT_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.JsonFactory
-
Bitfield (set of flags) of all parser features that are enabled by default.
- DEFAULT_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.core.TSFBuilder
-
Bitfield (set of flags) of all parser features that are enabled by default.
- DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.core.JsonFactory
- DEFAULT_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.JsonParser
-
Default set of
StreamReadCapability
ies that may be used as basis for format-specific readers (or as bogus instance if non-null set needs to be passed). - DEFAULT_ROOT_VALUE_SEPARATOR - Static variable in class com.fasterxml.jackson.core.JsonFactory
- DEFAULT_ROOT_VALUE_SEPARATOR - Static variable in interface com.fasterxml.jackson.core.PrettyPrinter
-
Default String used for separating root values is single space.
- DEFAULT_ROOT_VALUE_SEPARATOR - Static variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Constant that specifies default "root-level" separator to use between root values: a single space character.
- DEFAULT_SEPARATORS - Static variable in interface com.fasterxml.jackson.core.PrettyPrinter
- DEFAULT_TEXTUAL_WRITE_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.JsonGenerator
-
Default set of
StreamReadCapability
ies for typical textual formats, to use either as-is, or as a base with possible differences. - DEFAULT_WRITE_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.JsonGenerator
-
Default set of
StreamReadCapability
ies that may be used as basis for format-specific readers (or as bogus instance if non-null set needs to be passed). - DefaultIndenter - Class in com.fasterxml.jackson.core.util
-
Default linefeed-based indenter, used by
DefaultPrettyPrinter
(unless overridden). - DefaultIndenter() - Constructor for class com.fasterxml.jackson.core.util.DefaultIndenter
-
Indent with two spaces and the system's default line feed
- DefaultIndenter(String, String) - Constructor for class com.fasterxml.jackson.core.util.DefaultIndenter
-
Create an indenter which uses the
indent
string to indent one level and theeol
string to separate lines. - DefaultPrettyPrinter - Class in com.fasterxml.jackson.core.util
-
Default
PrettyPrinter
implementation that uses 2-space indentation with platform-default linefeeds. - DefaultPrettyPrinter() - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- DefaultPrettyPrinter(SerializableString) - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Constructor that specifies separator String to use between root values; if null, no separator is printed.
- DefaultPrettyPrinter(DefaultPrettyPrinter) - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- DefaultPrettyPrinter(DefaultPrettyPrinter, SerializableString) - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- DefaultPrettyPrinter(String) - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Constructor that specifies separator String to use between root values; if null, no separator is printed.
- DefaultPrettyPrinter.FixedSpaceIndenter - Class in com.fasterxml.jackson.core.util
-
This is a very simple indenter that only adds a single space for indentation.
- DefaultPrettyPrinter.Indenter - Interface in com.fasterxml.jackson.core.util
-
Interface that defines objects that can produce indentation used to separate object entries and array values.
- DefaultPrettyPrinter.NopIndenter - Class in com.fasterxml.jackson.core.util
-
Dummy implementation that adds no indentation whatsoever
- delegate - Variable in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
-
Delegate object that method calls are delegated to.
- delegate - Variable in class com.fasterxml.jackson.core.util.JsonParserDelegate
-
Delegate object that method calls are delegated to.
- delegate() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- delegate() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
-
Accessor for getting the immediate
JsonParser
this parser delegates calls to. - delegateCopyMethods - Variable in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
-
Whether copy methods (
JsonGeneratorDelegate.copyCurrentEvent(com.fasterxml.jackson.core.JsonParser)
,JsonGeneratorDelegate.copyCurrentStructure(com.fasterxml.jackson.core.JsonParser)
,JsonGeneratorDelegate.writeTree(com.fasterxml.jackson.core.TreeNode)
andJsonGeneratorDelegate.writeObject(java.lang.Object)
) are to be called (true), or handled by this object (false). - DERIVED_FEATURES_MASK - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
Set of feature masks related to features that need updates of other local configuration or state.
- detectEncoding() - Method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
-
Method that should be called after constructing an instace.
- disable(JsonReadFeature) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- disable(JsonReadFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(JsonReadFeature, JsonReadFeature...) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- disable(JsonReadFeature, JsonReadFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(JsonWriteFeature) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- disable(JsonWriteFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(JsonWriteFeature, JsonWriteFeature...) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- disable(JsonWriteFeature, JsonWriteFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(JsonFactory.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.since 2.10 use
TSFBuilder.configure(JsonFactory.Feature, boolean)
instead - disable(JsonFactory.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- disable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- disable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for disabling specified generator feature (check
JsonGenerator.Feature
for list of features) - disable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for disabling specified feature (check
JsonGenerator.Feature
for list of features) - disable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- disable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.base.ParserBase
- disable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for disabling specified parser features (check
JsonParser.Feature
for list of features) - disable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for disabling specified feature (check
JsonParser.Feature
for list of features) - disable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- disable(StreamReadFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(StreamReadFeature, StreamReadFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(StreamWriteFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- disable(StreamWriteFeature, StreamWriteFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- DOUBLE - com.fasterxml.jackson.core.JsonParser.NumberType
- DupDetector - Class in com.fasterxml.jackson.core.json
-
Helper class used if
JsonParser.Feature.STRICT_DUPLICATE_DETECTION
is enabled. - DUPLICATE_PROPERTIES - com.fasterxml.jackson.core.StreamReadCapability
-
Capability that indicates that data format can expose multiple properties with same name ("duplicates") within one Object context.
E
- empty() - Static method in class com.fasterxml.jackson.core.JsonPointer
-
Accessor for an "empty" expression, that is, one you can get by calling
JsonPointer.compile(java.lang.String)
with "" (empty String). - EMPTY - Static variable in class com.fasterxml.jackson.core.JsonPointer
-
Marker instance used to represent segment that matches current node or position (that is, returns true for
JsonPointer.matches()
). - emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- enable(JsonReadFeature) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- enable(JsonReadFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(JsonReadFeature, JsonReadFeature...) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- enable(JsonReadFeature, JsonReadFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(JsonWriteFeature) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- enable(JsonWriteFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(JsonWriteFeature, JsonWriteFeature...) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- enable(JsonWriteFeature, JsonWriteFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(JsonFactory.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.since 2.10 use
TSFBuilder.configure(JsonFactory.Feature, boolean)
instead - enable(JsonFactory.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- enable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- enable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for enabling specified generator features (check
JsonGenerator.Feature
for list of features) - enable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for enabling specified generator feature: check
JsonGenerator.Feature
for list of available features. - enable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- enable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.base.ParserBase
- enable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for enabling specified parser feature (check
JsonParser.Feature
for list of features) - enable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for enabling specified parser feature (check
JsonParser.Feature
for list of features) - enable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- enable(StreamReadFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(StreamReadFeature, StreamReadFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(StreamWriteFeature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enable(StreamWriteFeature, StreamWriteFeature...) - Method in class com.fasterxml.jackson.core.TSFBuilder
- enabledByDefault() - Method in interface com.fasterxml.jackson.core.FormatFeature
-
Accessor for checking whether this feature is enabled by default.
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.json.JsonReadFeature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.JsonFactory.Feature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.JsonParser.Feature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.StreamReadCapability
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.StreamReadFeature
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.StreamWriteCapability
- enabledByDefault() - Method in enum com.fasterxml.jackson.core.StreamWriteFeature
- enabledByDefault() - Method in interface com.fasterxml.jackson.core.util.JacksonFeature
-
Accessor for checking whether this feature is enabled by default.
- enabledIn(int) - Method in interface com.fasterxml.jackson.core.FormatFeature
-
Convenience method for checking whether feature is enabled in given bitmask
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.json.JsonReadFeature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.JsonFactory.Feature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.JsonParser.Feature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.StreamReadCapability
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.StreamReadFeature
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.StreamWriteCapability
- enabledIn(int) - Method in enum com.fasterxml.jackson.core.StreamWriteFeature
- enabledIn(int) - Method in interface com.fasterxml.jackson.core.util.JacksonFeature
-
Convenience method for checking whether feature is enabled in given bitmask.
- encode(byte[]) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Convenience method for converting given byte array as base64 encoded String using this variant's settings.
- encode(byte[], boolean) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Convenience method for converting given byte array as base64 encoded String using this variant's settings, optionally enclosed in double-quotes.
- encode(byte[], boolean, String) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Convenience method for converting given byte array as base64 encoded String using this variant's settings, optionally enclosed in double-quotes.
- encodeAsUTF8(CharSequence) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Overloaded variant of
JsonStringEncoder.encodeAsUTF8(String)
. - encodeAsUTF8(String) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Will encode given String as UTF-8 (without any escaping) and return the resulting byte array.
- encodeBase64BitsAsByte(int) - Method in class com.fasterxml.jackson.core.Base64Variant
- encodeBase64BitsAsChar(int) - Method in class com.fasterxml.jackson.core.Base64Variant
- encodeBase64Chunk(int, byte[], int) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Method that encodes given right-aligned (LSB) 24-bit value into 4 base64 bytes (ascii), stored in given result buffer.
- encodeBase64Chunk(int, char[], int) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Method that encodes given right-aligned (LSB) 24-bit value into 4 base64 characters, stored in given result buffer.
- encodeBase64Chunk(StringBuilder, int) - Method in class com.fasterxml.jackson.core.Base64Variant
- encodeBase64Partial(int, int, byte[], int) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Method that outputs partial chunk (which only encodes one or two bytes of data).
- encodeBase64Partial(int, int, char[], int) - Method in class com.fasterxml.jackson.core.Base64Variant
-
Method that outputs partial chunk (which only encodes one or two bytes of data).
- encodeBase64Partial(StringBuilder, int, int) - Method in class com.fasterxml.jackson.core.Base64Variant
- END_ARRAY - com.fasterxml.jackson.core.JsonToken
-
END_ARRAY is returned when encountering ']' which signals ending of an Array value
- END_OBJECT - com.fasterxml.jackson.core.JsonToken
-
END_OBJECT is returned when encountering '}' which signals ending of an Object value
- endOfInput() - Method in interface com.fasterxml.jackson.core.async.NonBlockingInputFeeder
-
Method that should be called after last chunk of data to parse has been fed (with
feedInput
in sub-class); can be called regardless of whatNonBlockingInputFeeder.needMoreInput()
returns. - endOfInput() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- ensureFieldNameWritten(JsonGenerator) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Method called to ensure that field name, if present, has been written
- ensureLoaded(int) - Method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- ensureNotShared() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
- equals(int) - Method in class com.fasterxml.jackson.core.sym.Name
- equals(int) - Method in class com.fasterxml.jackson.core.sym.Name1
- equals(int) - Method in class com.fasterxml.jackson.core.sym.Name2
- equals(int) - Method in class com.fasterxml.jackson.core.sym.Name3
- equals(int) - Method in class com.fasterxml.jackson.core.sym.NameN
- equals(int[], int) - Method in class com.fasterxml.jackson.core.sym.Name
- equals(int[], int) - Method in class com.fasterxml.jackson.core.sym.Name1
- equals(int[], int) - Method in class com.fasterxml.jackson.core.sym.Name2
- equals(int[], int) - Method in class com.fasterxml.jackson.core.sym.Name3
- equals(int[], int) - Method in class com.fasterxml.jackson.core.sym.NameN
- equals(int, int) - Method in class com.fasterxml.jackson.core.sym.Name
- equals(int, int) - Method in class com.fasterxml.jackson.core.sym.Name1
- equals(int, int) - Method in class com.fasterxml.jackson.core.sym.Name2
- equals(int, int) - Method in class com.fasterxml.jackson.core.sym.Name3
- equals(int, int) - Method in class com.fasterxml.jackson.core.sym.NameN
- equals(int, int, int) - Method in class com.fasterxml.jackson.core.sym.Name
- equals(int, int, int) - Method in class com.fasterxml.jackson.core.sym.Name1
- equals(int, int, int) - Method in class com.fasterxml.jackson.core.sym.Name2
- equals(int, int, int) - Method in class com.fasterxml.jackson.core.sym.Name3
- equals(int, int, int) - Method in class com.fasterxml.jackson.core.sym.NameN
- equals(Object) - Method in class com.fasterxml.jackson.core.Base64Variant
- equals(Object) - Method in class com.fasterxml.jackson.core.io.SerializedString
- equals(Object) - Method in class com.fasterxml.jackson.core.JsonLocation
- equals(Object) - Method in class com.fasterxml.jackson.core.JsonPointer
- equals(Object) - Method in class com.fasterxml.jackson.core.sym.Name
- equals(Object) - Method in class com.fasterxml.jackson.core.Version
- ESCAPE_CUSTOM - Static variable in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Value used for lookup tables to indicate that matching characters will need custom escapes; and that another call to
CharacterEscapes.getEscapeSequence(int)
is needed to figure out exact escape sequence to output. - ESCAPE_NON_ASCII - com.fasterxml.jackson.core.json.JsonWriteFeature
-
Feature that specifies that all characters beyond 7-bit ASCII range (i.e.
- ESCAPE_NON_ASCII - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Deprecated.Since 2.10 use
JsonWriteFeature.ESCAPE_NON_ASCII
instead - ESCAPE_NONE - Static variable in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Value used for lookup tables to indicate that matching characters do not need to be escaped.
- ESCAPE_STANDARD - Static variable in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Value used for lookup tables to indicate that matching characters are to be escaped using standard escaping; for JSON this means (for example) using "backslash - u" escape method.
- expandCurrentSegment() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to expand size of the current segment, to accommodate for more contiguous content.
- expandCurrentSegment(int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to expand size of the current segment, to accommodate for more contiguous content.
- expectComma() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- extra - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Optional additional information that generator may add during "prefix write", to be available on matching "suffix write".
F
- factoryFeaturesMask() - Method in class com.fasterxml.jackson.core.TSFBuilder
- FAIL_ON_SYMBOL_HASH_OVERFLOW - com.fasterxml.jackson.core.JsonFactory.Feature
-
Feature that determines what happens if we encounter a case in symbol handling where number of hash collisions exceeds a safety threshold -- which almost certainly means a denial-of-service attack via generated duplicate hash codes.
- feedInput(byte[], int, int) - Method in interface com.fasterxml.jackson.core.async.ByteArrayFeeder
-
Method that can be called to feed more data, if (and only if)
NonBlockingInputFeeder.needMoreInput()
returns true. - feedInput(byte[], int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- feedInput(ByteBuffer) - Method in interface com.fasterxml.jackson.core.async.ByteBufferFeeder
-
Method that can be called to feed more data, if (and only if)
NonBlockingInputFeeder.needMoreInput()
returns true. - FIELD_NAME - com.fasterxml.jackson.core.JsonToken
-
FIELD_NAME is returned when a String token is encountered as a field name (same lexical value, different function)
- fieldNames() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for accessing names of all fields for this node, iff this node is an Object node.
- filterFinishArray() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to indicate that output of non-filtered Array (one that may have been included either completely, or in part) is completed, in cases where filter other that
TokenFilter.INCLUDE_ALL
was returned. - filterFinishObject() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to indicate that output of non-filtered Object (one that may have been included either completely, or in part) is completed, in cases where filter other that
TokenFilter.INCLUDE_ALL
was returned. - FilteringGeneratorDelegate - Class in com.fasterxml.jackson.core.filter
-
Specialized
JsonGeneratorDelegate
that allows use ofTokenFilter
for outputting a subset of content that caller tries to generate. - FilteringGeneratorDelegate(JsonGenerator, TokenFilter, boolean, boolean) - Constructor for class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Deprecated.since 2.12 Use the constructor that takes
TokenFilter.Inclusion
argument instead. - FilteringGeneratorDelegate(JsonGenerator, TokenFilter, TokenFilter.Inclusion, boolean) - Constructor for class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- FilteringParserDelegate - Class in com.fasterxml.jackson.core.filter
-
Specialized
JsonParserDelegate
that allows use ofTokenFilter
for outputting a subset of content that is visible to caller - FilteringParserDelegate(JsonParser, TokenFilter, boolean, boolean) - Constructor for class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Deprecated.
- FilteringParserDelegate(JsonParser, TokenFilter, TokenFilter.Inclusion, boolean) - Constructor for class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- filterStartArray() - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- filterStartArray() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to check whether Array value at current output location should be included in output.
- filterStartObject() - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- filterStartObject() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to check whether Object value at current output location should be included in output.
- findChildOf(TokenFilterContext) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- findFormat(byte[]) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method to call to find format that given content (full document) has, as per configuration of this detector instance.
- findFormat(byte[], int, int) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method to call to find format that given content (full document) has, as per configuration of this detector instance.
- findFormat(InputStream) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method to call to find format that content (accessible via given
InputStream
) given has, as per configuration of this detector instance. - findLocation() - Method in class com.fasterxml.jackson.core.json.DupDetector
- findName(int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- findName(int[], int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- findName(int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- findName(int, int, int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- findSymbol(char[], int, int, int) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- finishCurrentSegment() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
-
Method called when the current segment buffer is full; will append to current contents, allocate a new segment buffer and return it
- finishCurrentSegment() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- finishToken() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- finishToken() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- finishToken() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- finishToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that may be used to force full handling of the current token so that even if lazy processing is enabled, the whole contents are read for possible retrieval.
- finishToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- FixedSpaceIndenter() - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter
- FLOAT - com.fasterxml.jackson.core.JsonParser.NumberType
- flush() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- flush() - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- flush() - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- flush() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- flush() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- flush() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method called to flush any buffered content to the underlying target (output stream, writer), and to flush the target itself as well.
- flush() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- flush() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- FLUSH_PASSED_TO_STREAM - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that specifies that calls to
JsonGenerator.flush()
will cause matchingflush()
to underlyingOutputStream
orWriter
; if disabled this will not be done. - FLUSH_PASSED_TO_STREAM - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that specifies that calls to
JsonGenerator.flush()
will cause matchingflush()
to underlyingOutputStream
orWriter
; if disabled this will not be done. - FORMAT_NAME_JSON - Static variable in class com.fasterxml.jackson.core.JsonFactory
-
Name used to identify JSON format (and returned by
JsonFactory.getFormatName()
- FormatFeature - Interface in com.fasterxml.jackson.core
-
Marker interface that is to be implemented by data format - specific features.
- FormatSchema - Interface in com.fasterxml.jackson.core
-
Simple tag interface used to mark schema objects that are used by some
JsonParser
andJsonGenerator
implementations to further specify structure of expected format. - forPath(JsonStreamContext, boolean) - Static method in class com.fasterxml.jackson.core.JsonPointer
-
Factory method that will construct a pointer instance that describes path to location given
JsonStreamContext
points to. - forValue - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Java object for which type id is being written.
- forValueType - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
(optional) Super-type of
WritableTypeId.forValue
to use for type id generation (if no explicit id passed): used instead of actual class ofWritableTypeId.forValue
in cases where we do not want to use the "real" type but something more generic, usually to work around specific problem with implementation type, or its deserializer. - fromBitmask(int) - Static method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
- fromDefaults(F[]) - Static method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
"Default" factory which will calculate settings based on default-enabled status of all features.
- fromInitial(byte[], int) - Static method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- fromInitial(char[]) - Static method in class com.fasterxml.jackson.core.util.TextBuffer
-
Factory method for constructing an instance with no allocator, and with initial full segment.
- FULL_MATCH - com.fasterxml.jackson.core.format.MatchStrength
-
Value that indicates that given data contains a signature that is deemed specific enough to uniquely indicate data format used.
G
- GeneratorBase - Class in com.fasterxml.jackson.core.base
-
This base class implements part of API that a JSON generator exposes to applications, adds shared internal methods that sub-classes can use and adds some abstract methods sub-classes must implement.
- GeneratorBase(int, ObjectCodec) - Constructor for class com.fasterxml.jackson.core.base.GeneratorBase
- GeneratorBase(int, ObjectCodec, JsonWriteContext) - Constructor for class com.fasterxml.jackson.core.base.GeneratorBase
- get(int) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for accessing value of the specified element of an array node.
- get(String) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for accessing value of the specified field of an object node.
- get7BitOutputEscapes() - Static method in class com.fasterxml.jackson.core.io.CharTypes
-
Accessor for getting a read-only encoding table for first 128 Unicode code points (single-byte UTF-8 characters).
- get7BitOutputEscapes(int) - Static method in class com.fasterxml.jackson.core.io.CharTypes
-
Alternative to
CharTypes.get7BitOutputEscapes()
when a non-standard quote character is used. - getAndClear() - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
-
Main access method that will construct a String that contains all the contents, release all internal buffers we may have, and return result String.
- getArrayValueSeparator() - Method in class com.fasterxml.jackson.core.util.Separators
- getArtifactId() - Method in class com.fasterxml.jackson.core.Version
- getBigIntegerValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getBigIntegerValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getBigIntegerValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_INT
and it can not be used as a Java long primitive type due to its magnitude. - getBigIntegerValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getBinaryValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Convenience alternative to
JsonParser.getBinaryValue(Base64Variant)
that defaults to usingBase64Variants.getDefaultVariant()
as the default encoding. - getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.base.ParserBase
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to read (and consume -- results may not be accessible using other methods after the call) base64-encoded binary data included in the current textual JSON value.
- getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getBooleanValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getBooleanValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Convenience accessor that can be called when the current token is
JsonToken.VALUE_TRUE
orJsonToken.VALUE_FALSE
, to return matchingboolean
value. - getBooleanValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getBufferRecycler() - Static method in class com.fasterxml.jackson.core.util.BufferRecyclers
-
Main accessor to call for accessing possibly recycled
BufferRecycler
instance. - getBufferWithoutReset() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method for accessing the currently active (last) content segment without changing state of the buffer
- getByteOffset() - Method in class com.fasterxml.jackson.core.JsonLocation
- getByteValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getByteValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_INT
and it can be expressed as a value of Java byte primitive type. - getByteValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getCharacterEscapes() - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Method for accessing custom escapes factory uses for
JsonGenerator
s it creates. - getCharacterEscapes() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for accessing custom escapes factory uses for
JsonGenerator
s it creates. - getCharacterEscapes() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for accessing custom escapes factory uses for
JsonGenerator
s it creates. - getCharacterEscapes() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getCharOffset() - Method in class com.fasterxml.jackson.core.JsonLocation
- getCodec() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- getCodec() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getCodec() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getCodec() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getCodec() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getCodec() - Method in class com.fasterxml.jackson.core.JsonFactory
- getCodec() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for accessing the object used for writing Java object as JSON content (using method
JsonGenerator.writeObject(java.lang.Object)
). - getCodec() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor for
ObjectCodec
associated with this parser, if any. - getCodec() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getCodec() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getColumnNr() - Method in class com.fasterxml.jackson.core.JsonLocation
- getContentType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for accessing content type of this type, if type has such a thing: simple types do not, structured types do (like arrays, Collections and Maps)
- getCurrentIndex() - Method in class com.fasterxml.jackson.core.JsonStreamContext
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method that returns location of the last processed character; usually for error reporting purposes
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that returns location of the last processed character; usually for error reporting purposes.
- getCurrentLocation() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getCurrentName() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method that can be called to get the name associated with the current event.
- getCurrentName() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getCurrentName() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getCurrentName() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- getCurrentName() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- getCurrentName() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- getCurrentName() - Method in class com.fasterxml.jackson.core.JsonParser
- getCurrentName() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method for accessing name associated with the current location.
- getCurrentName() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getCurrentSegment() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- getCurrentSegment() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- getCurrentSegmentLength() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- getCurrentSegmentSize() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- getCurrentToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getCurrentToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getCurrentToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Alias for
JsonParser.currentToken()
, may be deprecated sometime after Jackson 2.12 (will be removed from 3.0). - getCurrentToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getCurrentTokenId() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Deprecated.
- getCurrentTokenId() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Deprecated.
- getCurrentTokenId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Deprecated.Since 2.12 use
JsonParser.currentTokenId()
instead - getCurrentTokenId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
-
Deprecated.
- getCurrentValue() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- getCurrentValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getCurrentValue() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- getCurrentValue() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- getCurrentValue() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- getCurrentValue() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Helper method, usually equivalent to:
getOutputContext().getCurrentValue();
- getCurrentValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Helper method, usually equivalent to:
getParsingContext().getCurrentValue();
- getCurrentValue() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method for accessing currently active value being used by data-binding (as the source of streaming data to write, or destination of data being read), at this level in hierarchy.
- getCurrentValue() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getCurrentValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getDataStream() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Method to use for accessing input for which format detection has been done.
- getDecimalValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getDecimalValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getDecimalValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_FLOAT
orJsonToken.VALUE_NUMBER_INT
. - getDecimalValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getDefaultVariant() - Static method in class com.fasterxml.jackson.core.Base64Variants
-
Method used to get the default variant --
Base64Variants.MIME_NO_LINEFEEDS
-- for cases where caller does not explicitly specify the variant. - getDelegate() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
-
Deprecated.
- getDoubleValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getDoubleValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getDoubleValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_FLOAT
and it can be expressed as a Java double primitive type. - getDoubleValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getDupDetector() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- getDupDetector() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- getEmbeddedObject() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getEmbeddedObject() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getEmbeddedObject() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor that can be called if (and only if) the current token is
JsonToken.VALUE_EMBEDDED_OBJECT
. - getEmbeddedObject() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getEmptyName() - Static method in class com.fasterxml.jackson.core.sym.Name1
- getEncoding() - Method in class com.fasterxml.jackson.core.io.IOContext
- getEntryCount() - Method in class com.fasterxml.jackson.core.JsonStreamContext
- getEol() - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Method generators can call to get lookup table for determining escape handling for first 128 characters of Unicode (ASCII characters.
- getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.core.JsonpCharacterEscapes
- getEscapeSequence(int) - Method in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Method generators can call to get lookup table for determining exact escape sequence to use for given character.
- getEscapeSequence(int) - Method in class com.fasterxml.jackson.core.JsonpCharacterEscapes
- getFactory() - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Accessor for finding underlying data format factory (
JsonFactory
) codec will use for data binding. - getFeatureMask() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- getFeatureMask() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Bulk access method for getting state of all standard (non-dataformat-specific)
JsonGenerator.Feature
s. - getFeatureMask() - Method in class com.fasterxml.jackson.core.JsonParser
-
Bulk access method for getting state of all standard
JsonParser.Feature
s. - getFeatureMask() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getFeatureMask() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getFilter() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- getFilter() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getFilter() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- getFilterContext() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- getFloatValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getFloatValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getFloatValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_FLOAT
and it can be expressed as a Java float primitive type. - getFloatValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getFormatFeatures() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Bulk access method for getting state of all
FormatFeature
s, format-specific on/off configuration settings. - getFormatFeatures() - Method in class com.fasterxml.jackson.core.JsonParser
-
Bulk access method for getting state of all
FormatFeature
s, format-specific on/off configuration settings. - getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.core.JsonFactory
- getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- getFormatName() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that returns short textual id identifying format this factory supports.
- getFormatName() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Method that returns short textual id identifying format this factory supports.
- getFormatParserFeatures() - Method in class com.fasterxml.jackson.core.JsonFactory
- getFormatParserFeatures() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- getFormatReadFeatureType() - Method in class com.fasterxml.jackson.core.JsonFactory
- getFormatReadFeatureType() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Method for accessing kind of
FormatFeature
that a parserJsonParser
produced by this factory would accept, if any;null
returned if none. - getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.core.JsonFactory
- getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Method for accessing kind of
FormatFeature
that a parserJsonGenerator
produced by this factory would accept, if any;null
returned if none. - getGeneratorFeatures() - Method in class com.fasterxml.jackson.core.JsonFactory
- getGeneratorFeatures() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- getGroupId() - Method in class com.fasterxml.jackson.core.Version
- getHighestEscapedChar() - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- getHighestEscapedChar() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Accessor method for testing what is the highest unescaped character configured for this generator.
- getHighestEscapedChar() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getIndent() - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- getInputCodeComment() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputCodeLatin1() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputCodeLatin1JsNames() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputCodeUtf8() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputCodeUtf8JsNames() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputCodeWS() - Static method in class com.fasterxml.jackson.core.io.CharTypes
- getInputDecorator() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for getting currently configured input decorator (if any; there is no default decorator).
- getInputSource() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getInputSource() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getInputSource() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getInputSource() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getInputSource() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to get access to object that is used to access input being parsed; this is usually either
InputStream
orReader
, depending on what parser was constructed with. - getInputSource() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getInputType() - Method in exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Accessor for getting information about input type (in form of token, giving "shape" of input) for which coercion failed.
- getInstance() - Static method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Factory method for getting an instance; this is either recycled per-thread instance, or a newly constructed one.
- getIntValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getIntValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getIntValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_INT
and it can be expressed as a value of Java int primitive type. - getIntValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getJavaName() - Method in enum com.fasterxml.jackson.core.JsonEncoding
-
Method for accessing encoding name that JDK will support.
- getJsonFactory() - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Deprecated.Use
ObjectCodec.getFactory()
instead. - getKeyType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for accessing key type for this type, assuming type has such a concept (only Map types do)
- getLastClearedToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getLastClearedToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getLastClearedToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to get the last token that was cleared using
JsonParser.clearCurrentToken()
. - getLastClearedToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getLineNr() - Method in class com.fasterxml.jackson.core.JsonLocation
- getLocation() - Method in exception com.fasterxml.jackson.core.JacksonException
-
Accessor for location information related to position within input or output (depending on operation), if available; if not available may return
null
. - getLocation() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
- getLongValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getLongValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getLongValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_INT
and it can be expressed as a Java long primitive type. - getLongValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getMajorVersion() - Method in class com.fasterxml.jackson.core.Version
- getMask() - Method in interface com.fasterxml.jackson.core.FormatFeature
-
Returns bit mask for this feature instance; must be a single bit, that is of form
(1 << N)
- getMask() - Method in enum com.fasterxml.jackson.core.json.JsonReadFeature
- getMask() - Method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
- getMask() - Method in enum com.fasterxml.jackson.core.JsonFactory.Feature
- getMask() - Method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
- getMask() - Method in enum com.fasterxml.jackson.core.JsonParser.Feature
- getMask() - Method in enum com.fasterxml.jackson.core.StreamReadCapability
- getMask() - Method in enum com.fasterxml.jackson.core.StreamReadFeature
- getMask() - Method in enum com.fasterxml.jackson.core.StreamWriteCapability
- getMask() - Method in enum com.fasterxml.jackson.core.StreamWriteFeature
- getMask() - Method in interface com.fasterxml.jackson.core.util.JacksonFeature
-
Returns bit mask for this feature instance; must be a single bit, that is of form
1 << N
. - getMatch() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Accessor for
JsonFactory
that represents format that data matched. - getMatchCount() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Accessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.
- getMatchCount() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Accessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.
- getMatchedFormatName() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Accessor for getting brief textual name of matched format if any (null if none).
- getMatchingIndex() - Method in class com.fasterxml.jackson.core.JsonPointer
- getMatchingProperty() - Method in class com.fasterxml.jackson.core.JsonPointer
- getMatchStrength() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Method for accessing strength of the match, if any; if no match, will return
MatchStrength.INCONCLUSIVE
. - getMaxLineLength() - Method in class com.fasterxml.jackson.core.Base64Variant
- getMessage() - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
-
Overriding the getMessage() to include the request body
- getMessage() - Method in exception com.fasterxml.jackson.core.JsonParseException
- getMessage() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
-
Default implementation overridden so that we can add location information
- getMessageSuffix() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
-
Accessor that sub-classes can override to append additional information right after the main message, but before source location information.
- getMinorVersion() - Method in class com.fasterxml.jackson.core.Version
- getName() - Method in class com.fasterxml.jackson.core.Base64Variant
- getName() - Method in class com.fasterxml.jackson.core.sym.Name
- getNextChar(String) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Deprecated.
- getNextChar(String, JsonToken) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getNonBlockingInputFeeder() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- getNonBlockingInputFeeder() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will either return a feeder instance (if parser uses non-blocking, aka asynchronous access); or
null
for parsers that use blocking I/O. - getNumberType() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getNumberType() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getNumberType() - Method in class com.fasterxml.jackson.core.JsonParser
-
If current token is of type
JsonToken.VALUE_NUMBER_INT
orJsonToken.VALUE_NUMBER_FLOAT
, returns one ofJsonParser.NumberType
constants; otherwise returns null. - getNumberType() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getNumberValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getNumberValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getNumberValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Generic number value accessor method that will work for all kinds of numeric values.
- getNumberValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getNumberValueExact() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getNumberValueExact() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method similar to
JsonParser.getNumberValue()
with the difference that for floating-point numbers value returned may beBigDecimal
if the underlying format does not store floating-point numbers using native representation: for example, textual formats represent numbers as Strings (which are 10-based), and conversion toDouble
is potentially lossy operation. - getNumberValueExact() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getObjectEntrySeparator() - Method in class com.fasterxml.jackson.core.util.Separators
- getObjectFieldValueSeparator() - Method in class com.fasterxml.jackson.core.util.Separators
- getObjectId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to check whether current token (one that was just read) has an associated Object id, and if so, return it.
- getObjectId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getOriginalMessage() - Method in exception com.fasterxml.jackson.core.JacksonException
-
Method that allows accessing the original "message" argument, without additional decorations (like location information) that overridden
Throwable.getMessage()
adds. - getOriginalMessage() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
-
Method that allows accessing the original "message" argument, without additional decorations (like location information) that overridden
JsonProcessingException.getMessage()
adds. - getOutputBuffered() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- getOutputBuffered() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- getOutputBuffered() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for verifying amount of content that is buffered by generator but not yet flushed to the underlying target (stream, writer), in units (byte, char) that the generator implementation uses for buffering; or -1 if this information is not available.
- getOutputBuffered() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getOutputContext() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Note: type was co-variant until Jackson 2.7; reverted back to base type in 2.8 to allow for overriding by subtypes that use custom context type.
- getOutputContext() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- getOutputContext() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Accessor for context object that provides information about low-level logical position withing output token stream.
- getOutputContext() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getOutputDecorator() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for getting currently configured output decorator (if any; there is no default decorator).
- getOutputTarget() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- getOutputTarget() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- getOutputTarget() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be used to get access to object that is used as target for generated output; this is usually either
OutputStream
orWriter
, depending on what generator was constructed with. - getOutputTarget() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getPaddingByte() - Method in class com.fasterxml.jackson.core.Base64Variant
- getPaddingChar() - Method in class com.fasterxml.jackson.core.Base64Variant
- getParameterSource() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Deprecated.Since 2.7: does not have meaning as parameters depend on type resolved.
- getParent() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- getParent() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- getParent() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- getParent() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Accessor for finding parent context of this context; will return null for root context.
- getParserFeatures() - Method in class com.fasterxml.jackson.core.JsonFactory
- getParserFeatures() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- getParsingContext() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getParsingContext() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getParsingContext() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getParsingContext() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to access current parsing context reader is in.
- getParsingContext() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getPatchLevel() - Method in class com.fasterxml.jackson.core.Version
- getPrettyPrinter() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Accessor for checking whether this generator has a configured
PrettyPrinter
; returns it if so, null if none configured. - getPrettyPrinter() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getProcessor() - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
- getProcessor() - Method in exception com.fasterxml.jackson.core.JacksonException
-
Method that allows accessing underlying processor that triggered this exception; typically either
JsonParser
orJsonGenerator
for exceptions that originate from streaming API, but other abstractions when thrown by databinding. - getProcessor() - Method in exception com.fasterxml.jackson.core.JsonGenerationException
- getProcessor() - Method in exception com.fasterxml.jackson.core.JsonParseException
- getProcessor() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
-
Method that allows accessing underlying processor that triggered this exception; typically either
JsonParser
orJsonGenerator
for exceptions that originate from streaming API. - getRawClass() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Accessor for type-erased
Class
of resolved type. - getRawPayload() - Method in class com.fasterxml.jackson.core.util.RequestPayload
-
Returns the raw request payload object i.e, either byte[] or String
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor for getting metadata on capabilities of this parser, based on underlying data format being read (directly or indirectly).
- getReadCapabilities() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getReferencedType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method for accessing type of value that instances of this type references, if any.
- getRequestPayload() - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
-
Method that may be called to find payload that was being parsed, if one was specified for parser that threw this Exception.
- getRequestPayload() - Method in exception com.fasterxml.jackson.core.JsonParseException
- getRequestPayloadAsString() - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
-
The method returns the String representation of the request payload if one was specified for parser that threw this Exception.
- getRequestPayloadAsString() - Method in exception com.fasterxml.jackson.core.JsonParseException
- getRootValueSeparator() - Method in class com.fasterxml.jackson.core.JsonFactory
- getSchema() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for accessing Schema that this generator uses, if any;
null
if none. - getSchema() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for accessing Schema that this parser uses, if any.
- getSchema() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- getSchema() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getSchemaType() - Method in interface com.fasterxml.jackson.core.FormatSchema
-
Method that can be used to get an identifier that can be used for diagnostics purposes, to indicate what kind of data format this schema is used for: typically it is a short name of format itself, but it can also contain additional information in cases where data format supports multiple types of schemas.
- getShortValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getShortValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Numeric accessor that can be called when the current token is of type
JsonToken.VALUE_NUMBER_INT
and it can be expressed as a value of Java short primitive type. - getShortValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getSource() - Method in class com.fasterxml.jackson.core.json.DupDetector
- getSourceRef() - Method in class com.fasterxml.jackson.core.JsonLocation
-
Reference to the original resource being read, if one available.
- getSourceReference() - Method in class com.fasterxml.jackson.core.io.IOContext
- getStartLocation(Object) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- getStartLocation(Object) - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Optional method that may be used to access starting location of this context: for example, in case of JSON `Object` context, offset at which `[` token was read or written.
- getTargetType() - Method in exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Accessor for getting information about target type (in form of Java
Class
) for which coercion failed. - getText() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getText() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getText() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Method for accessing textual representation of the current event; if no current event (before first call to
ParserMinimalBase.nextToken()
, or after encountering end-of-input), returns null. - getText() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method for accessing textual representation of the current event; if no current event (before first call to
ReaderBasedJsonParser.nextToken()
, or after encountering end-of-input), returns null. - getText() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getText() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getText() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for accessing textual representation of the current token; if no current token (before first call to
JsonParser.nextToken()
, or after encountering end-of-input), returns null. - getText() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getText(Writer) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getText(Writer) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getText(Writer) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getText(Writer) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getText(Writer) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method to read the textual representation of the current token in chunks and pass it to the given Writer.
- getText(Writer) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getTextBuffer() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Accessor that may be used to get the contents of this buffer as a single
char[]
regardless of whether they were collected in a segmented fashion or not: this typically require allocation of the result buffer. - getTextCharacters() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getTextCharacters() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getTextCharacters() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getTextCharacters() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getTextCharacters() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getTextCharacters() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getTextCharacters() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method similar to
JsonParser.getText()
, but that will return underlying (unmodifiable) character array that contains textual value, instead of constructing a String object to contain this information. - getTextCharacters() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getTextLength() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getTextLength() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getTextLength() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getTextLength() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getTextLength() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getTextLength() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getTextLength() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor used with
JsonParser.getTextCharacters()
, to know length of String stored in returned buffer. - getTextLength() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getTextOffset() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getTextOffset() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getTextOffset() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getTextOffset() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getTextOffset() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getTextOffset() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getTextOffset() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor used with
JsonParser.getTextCharacters()
, to know offset of the first text content character within buffer. - getTextOffset() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getTextOffset() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- getTokenBeingDecoded() - Method in exception com.fasterxml.jackson.core.io.JsonEOFException
-
Accessor for possibly available information about token that was being decoded while encountering end of input.
- getTokenCharacterOffset() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getTokenColumnNr() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getTokenLineNr() - Method in class com.fasterxml.jackson.core.base.ParserBase
- getTokenLocation() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.
- getTokenLocation() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getTokenLocation() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getTokenLocation() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getTokenLocation() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getTokenLocation() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getTokenLocation() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.
- getTokenLocation() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getType() - Method in class com.fasterxml.jackson.core.type.TypeReference
- getTypeDesc() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Deprecated.Since 2.8 use
JsonStreamContext.typeDesc()
instead - getTypeId() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to check whether current token (one that was just read) has an associated type id, and if so, return it.
- getTypeId() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValue() - Method in class com.fasterxml.jackson.core.io.SerializedString
- getValue() - Method in interface com.fasterxml.jackson.core.SerializableString
-
Returns unquoted String that this object represents (and offers serialized forms for)
- getValueAsBoolean() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsBoolean() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a boolean.
- getValueAsBoolean() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsBoolean(boolean) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsBoolean(boolean) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsBoolean(boolean) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a boolean.
- getValueAsBoolean(boolean) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsDouble() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsDouble() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a Java double.
- getValueAsDouble() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsDouble(double) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsDouble(double) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsDouble(double) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a Java double.
- getValueAsDouble(double) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsInt() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsInt() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsInt() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getValueAsInt() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getValueAsInt() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a Java
int
value. - getValueAsInt() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a int.
- getValueAsInt(int) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsLong() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsLong() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsLong() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a long.
- getValueAsLong() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsLong(long) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsLong(long) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsLong(long) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a long.
- getValueAsLong(long) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsString() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsString() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsString() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getValueAsString() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getValueAsString() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getValueAsString() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getValueAsString() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a
String
. - getValueAsString() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- getValueAsString(String) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will try to convert value of current token to a
String
. - getValueAsString(String) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- getWriteCapabilities() - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- getWriteCapabilities() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Accessor for getting metadata on capabilities of this generator, based on underlying data format being read (directly or indirectly).
- getWriteCapabilities() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- growArrayBy(int[], int) - Static method in class com.fasterxml.jackson.core.base.ParserBase
H
- hasCurrentIndex() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method that may be called to verify whether this context has valid index: will return `false` before the first entry of Object context or before first element of Array context; otherwise returns `true`.
- hasCurrentName() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- hasCurrentName() - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- hasCurrentName() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- hasCurrentName() - Method in class com.fasterxml.jackson.core.JsonStreamContext
- hasCurrentToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- hasCurrentToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- hasCurrentToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for checking whether parser currently points to a token (and data for that token is available).
- hasCurrentToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.core.JsonFactory
- hasGenericTypes() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method that can be used to find out if the type directly declares generic parameters (for its direct super-class and/or super-interfaces).
- HASH_MULT - Static variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- hashCode() - Method in class com.fasterxml.jackson.core.Base64Variant
- hashCode() - Method in class com.fasterxml.jackson.core.io.SerializedString
- hashCode() - Method in class com.fasterxml.jackson.core.JsonLocation
- hashCode() - Method in class com.fasterxml.jackson.core.JsonPointer
- hashCode() - Method in class com.fasterxml.jackson.core.sym.Name
- hashCode() - Method in class com.fasterxml.jackson.core.Version
- hashSeed() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- hashSeed() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- hasJSONFormat(InputAccessor) - Static method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
-
Current implementation is not as thorough as other functionality (
ByteSourceJsonBootstrapper
); supports UTF-8, for example. - hasJSONFormat(InputAccessor) - Method in class com.fasterxml.jackson.core.JsonFactory
- hasMatch() - Method in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Accessor to use to see if any formats matched well enough with the input data.
- hasMoreBytes() - Method in interface com.fasterxml.jackson.core.format.InputAccessor
-
Method to call to check if more input is available.
- hasMoreBytes() - Method in class com.fasterxml.jackson.core.format.InputAccessor.Std
- hasPathSegment() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method that may be called to check if this context is either: Object, with at least one entry written (partially or completely) Array, with at least one entry written (partially or completely) and if so, return `true`; otherwise return `false`.
- hasRawClass(Class<?>) - Method in class com.fasterxml.jackson.core.type.ResolvedType
- hasTextAsCharacters() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method that can be used to check whether textual contents can be efficiently accessed using
TextBuffer.getTextBuffer()
. - hasTextCharacters() - Method in class com.fasterxml.jackson.core.base.ParserBase
- hasTextCharacters() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- hasTextCharacters() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- hasTextCharacters() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- hasTextCharacters() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to determine whether calling of
JsonParser.getTextCharacters()
would be the most efficient way to access textual content for the event parser currently points to. - hasTextCharacters() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- hasToken(JsonToken) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- hasToken(JsonToken) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- hasToken(JsonToken) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that is functionally equivalent to:
return currentToken() == t
but may be more efficiently implemented. - hasToken(JsonToken) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- hasTokenId(int) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- hasTokenId(int) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- hasTokenId(int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that is functionally equivalent to:
return currentTokenId() == id
but may be more efficiently implemented. - hasTokenId(int) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- HB - Static variable in class com.fasterxml.jackson.core.io.CharTypes
- HC - Static variable in class com.fasterxml.jackson.core.io.CharTypes
- head() - Method in class com.fasterxml.jackson.core.JsonPointer
-
Accessor for getting a pointer instance that is identical to this instance except that the last segment has been dropped.
- HEX_CHARS - Static variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- highestNonEscapedChar() - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- highestNonEscapedChar(int) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Method that allows specifying threshold beyond which all characters are automatically escaped (without checking possible custom escaping settings a la
JsonFactoryBuilder.characterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes)
: for example, to force escaping of all non-ASCII characters (set to 127), or all non-Latin-1 character (set to 255).
I
- id - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Actual type id to use: usually {link java.lang.String}.
- id() - Method in enum com.fasterxml.jackson.core.JsonToken
- ID_EMBEDDED_OBJECT - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_EMBEDDED_OBJECT
- ID_END_ARRAY - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.END_ARRAY
- ID_END_OBJECT - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.END_OBJECT
- ID_FALSE - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_FALSE
- ID_FIELD_NAME - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.FIELD_NAME
- ID_NO_TOKEN - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent the case where no
JsonToken
is available: either becauseJsonParser
has not been advanced to first token, or because no more tokens will be available (end-of-input or explicit closing of parser}. - ID_NOT_AVAILABLE - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.NOT_AVAILABLE
, used in cases where a token may become available when more input is available: this occurs in non-blocking use cases. - ID_NULL - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_NULL
- ID_NUMBER_FLOAT - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_NUMBER_FLOAT
- ID_NUMBER_INT - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_NUMBER_INT
- ID_START_ARRAY - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.START_ARRAY
- ID_START_OBJECT - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.START_OBJECT
- ID_STRING - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_STRING
- ID_TRUE - Static variable in interface com.fasterxml.jackson.core.JsonTokenId
-
Id used to represent
JsonToken.VALUE_TRUE
- IGNORE_UNDEFINED - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines what to do if the underlying data format requires knowledge of all properties to decode (usually via a Schema), and if no definition is found for a property that input content contains.
- IGNORE_UNDEFINED - com.fasterxml.jackson.core.StreamReadFeature
-
Feature that determines what to do if the underlying data format requires knowledge of all properties to decode (usually via a Schema), and if no definition is found for a property that input content contains.
- IGNORE_UNKNOWN - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that determines what to do if the underlying data format requires knowledge of all properties to output, and if no definition is found for a property that caller tries to write.
- IGNORE_UNKNOWN - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that determines what to do if the underlying data format requires knowledge of all properties to output, and if no definition is found for a property that caller tries to write.
- illegalSurrogate(int) - Static method in class com.fasterxml.jackson.core.io.UTF8Writer
- illegalSurrogateDesc(int) - Static method in class com.fasterxml.jackson.core.io.UTF8Writer
- inArray() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method that returns true if this context is an Array context; that is, content is being read from or written to a JSON Array.
- include - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Property used to indicate style of inclusion for this type id, in cases where no native type id may be used (either because format has none, like JSON; or because use of native type ids is disabled [with YAML]).
- INCLUDE_ALL - Static variable in class com.fasterxml.jackson.core.filter.TokenFilter
-
Marker value that should be used to indicate inclusion of a structured value (sub-tree representing Object or Array), or value of a named property (regardless of type).
- INCLUDE_ALL_AND_PATH - com.fasterxml.jackson.core.filter.TokenFilter.Inclusion
-
When TokenFilter.INCLUDE_ALL is returned, the corresponding token will be included as well as enclosing tokens up to the root
- INCLUDE_NON_NULL - com.fasterxml.jackson.core.filter.TokenFilter.Inclusion
-
Tokens will be included if any non-null filter is returned.
- INCLUDE_SOURCE_IN_LOCATION - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether
JsonLocation
instances should be constructed with reference to source or not. - INCLUDE_SOURCE_IN_LOCATION - com.fasterxml.jackson.core.StreamReadFeature
-
Feature that determines whether
JsonLocation
instances should be constructed with reference to source or not. - includeBinary() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level Binary value should be included in output or not.
- includeBoolean(boolean) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level boolean value should be included in output or not.
- includeElement(int) - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- includeElement(int) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to check whether array element with specified index (zero-based), at current output location, should be included in output.
- includeEmbeddedValue(Object) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level embedded (Opaque) value should be included in output or not.
- includeNull() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level null value should be included in output or not.
- includeNumber(double) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
double
value should be included in output or not. - includeNumber(float) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
float
value should be included in output or not. - includeNumber(int) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
int
value should be included in output or not. - includeNumber(long) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
long
value should be included in output or not. - includeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
BigDecimal
value should be included in output or not. - includeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level
BigInteger
value should be included in output or not. - includeProperty(String) - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- includeProperty(String) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to check whether property value with specified name, at current output location, should be included in output.
- includeRawValue() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level raw (pre-encoded, not quoted by generator) value should be included in output or not.
- includeRootValue(int) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Method called to check whether root-level value, at current output location, should be included in output.
- includeString(Reader, int) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level "streaming" String value should be included in output or not.
- includeString(String) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made to verify whether leaf-level String value should be included in output or not.
- includeValue(JsonParser) - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Call made when verifying whether a scaler value is being read from a parser.
- INCONCLUSIVE - com.fasterxml.jackson.core.format.MatchStrength
-
Value that indicates that detector can not find out whether could be a match or not.
- indentArraysWith(DefaultPrettyPrinter.Indenter) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- indentObjectsWith(DefaultPrettyPrinter.Indenter) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.core.io.NumberInput
-
Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
- inLongRange(String, boolean) - Static method in class com.fasterxml.jackson.core.io.NumberInput
-
Similar to
NumberInput.inLongRange(char[],int,int,boolean)
, but with String argument - inObject() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method that returns true if this context is an Object context; that is, content is being read from or written to a JSON Object.
- InputAccessor - Interface in com.fasterxml.jackson.core.format
-
Interface used to expose beginning of a data file to data format detection code.
- InputAccessor.Std - Class in com.fasterxml.jackson.core.format
-
Basic implementation that reads data from given
InputStream
and buffers it as necessary. - InputCoercionException - Exception in com.fasterxml.jackson.core.exc
-
Exception type for read-side problems that are not direct decoding ("parsing") problems (those would be reported as
JsonParseException
s), but rather result from failed attempts to convert specific Java value out of valid but incompatible input value. - InputCoercionException(JsonParser, String, JsonToken, Class<?>) - Constructor for exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Constructor that uses current parsing location as location, and sets processor (accessible via
StreamReadException.getProcessor()
) to specified parser. - inputDecorator() - Method in class com.fasterxml.jackson.core.TSFBuilder
- inputDecorator(InputDecorator) - Method in class com.fasterxml.jackson.core.TSFBuilder
- InputDecorator - Class in com.fasterxml.jackson.core.io
-
Handler class that can be used to decorate input sources.
- InputDecorator() - Constructor for class com.fasterxml.jackson.core.io.InputDecorator
- inRoot() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method that returns true if this context is a Root context; that is, content is being read from or written to without enclosing array or object structure.
- instance - Static variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter
- instance - Static variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter
- instance - Static variable in class com.fasterxml.jackson.core.util.InternCache
- instance() - Static method in class com.fasterxml.jackson.core.JsonpCharacterEscapes
- Instantiatable<T> - Interface in com.fasterxml.jackson.core.util
-
Add-on interface used to indicate things that may be "blueprint" objects which can not be used as is, but are used for creating usable per-process (serialization, deserialization) instances, using
Instantiatable.createInstance()
method. - INT - com.fasterxml.jackson.core.JsonParser.NumberType
- INT_0 - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_9 - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_APOS - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_ASTERISK - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_BACKSLASH - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_COLON - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_COMMA - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_CR - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_e - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_E - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_HASH - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_LBRACKET - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_LCURLY - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_LF - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_MINUS - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_PERIOD - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_PLUS - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_QUOTE - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_RBRACKET - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_RCURLY - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_SLASH - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_SPACE - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- INT_TAB - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- intern(String) - Method in class com.fasterxml.jackson.core.util.InternCache
- INTERN_FIELD_NAMES - com.fasterxml.jackson.core.JsonFactory.Feature
-
Feature that determines whether JSON object field names are to be canonicalized using
String.intern()
or not: if enabled, all field names will be intern()ed (and caller can count on this being true for all such names); if disabled, no intern()ing is done. - InternCache - Class in com.fasterxml.jackson.core.util
-
Singleton class that adds a simple first-level cache in front of regular String.intern() functionality.
- IOContext - Class in com.fasterxml.jackson.core.io
-
To limit number of configuration and state objects to pass, all contextual objects that need to be passed by the factory to readers and writers are combined under this object.
- IOContext(BufferRecycler, Object, boolean) - Constructor for class com.fasterxml.jackson.core.io.IOContext
- isAbstract() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isArray() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns true if this node is an Array node, false otherwise.
- isArrayType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isBigEndian() - Method in enum com.fasterxml.jackson.core.JsonEncoding
-
Whether encoding is big-endian (if encoding supports such notion).
- isBoolean() - Method in enum com.fasterxml.jackson.core.JsonToken
- isClosed() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- isClosed() - Method in class com.fasterxml.jackson.core.base.ParserBase
- isClosed() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- isClosed() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to determine whether this generator is closed or not.
- isClosed() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to determine whether this parser is closed or not.
- isClosed() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- isClosed() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isCollectionLikeType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isConcrete() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isContainerNode() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns true for container nodes: Arrays and Objects.
- isContainerType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isDup(String) - Method in class com.fasterxml.jackson.core.json.DupDetector
-
Method called to check whether a newly encountered property name would be a duplicate within this context, and if not, update the state to remember having seen the property name for checking more property names
- isEnabled(JsonFactory.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Checked whether specified parser feature is enabled.
- isEnabled(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- isEnabled(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Check whether specified generator feature is enabled.
- isEnabled(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for checking whether given feature is enabled.
- isEnabled(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- isEnabled(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- isEnabled(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for checking if the specified parser feature is enabled.
- isEnabled(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for checking whether specified
JsonParser.Feature
is enabled. - isEnabled(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- isEnabled(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isEnabled(StreamReadFeature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for checking if the specified stream read feature is enabled.
- isEnabled(StreamReadFeature) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for checking whether specified
JsonParser.Feature
is enabled. - isEnabled(StreamWriteFeature) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Check whether specified stream write feature is enabled.
- isEnabled(StreamWriteFeature) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for checking whether given feature is enabled.
- isEnabled(F) - Method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
Main accessor for checking whether given feature is enabled in this feature set.
- isEnumType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Similar to
JsonParser.isExpectedStartArrayToken()
, but checks whether stream currently points toJsonToken.VALUE_NUMBER_INT
. - isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Specialized accessor that can be used to verify that the current token indicates start array (usually meaning that current token is
JsonToken.START_ARRAY
) when start array is expected. - isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isExpectedStartObjectToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- isExpectedStartObjectToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- isExpectedStartObjectToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Similar to
JsonParser.isExpectedStartArrayToken()
, but checks whether stream currently points toJsonToken.START_OBJECT
. - isExpectedStartObjectToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isFinal() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isInline() - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- isInline() - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter
- isInline() - Method in interface com.fasterxml.jackson.core.util.DefaultPrettyPrinter.Indenter
- isInline() - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter
- isInterface() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isMapLikeType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isMissingNode() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns true for "virtual" nodes which represent missing entries constructed by path accessor methods when there is no actual node matching given criteria.
- isNaN() - Method in class com.fasterxml.jackson.core.base.ParserBase
- isNaN() - Method in class com.fasterxml.jackson.core.JsonParser
-
Access for checking whether current token is a numeric value token, but one that is of "not-a-number" (NaN) variety (including both "NaN" AND positive/negative infinity!): not supported by all formats, but often supported for
JsonToken.VALUE_NUMBER_FLOAT
. - isNaN() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- isNumeric() - Method in enum com.fasterxml.jackson.core.JsonToken
- isObject() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns true if this node is an Object node, false otherwise.
- isPrimitive() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isReferenceType() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Whether this type is a referential type, meaning that values are basically pointers to "real" values (or null) and not regular values themselves.
- isResourceManaged() - Method in class com.fasterxml.jackson.core.io.IOContext
- isScalarValue() - Method in enum com.fasterxml.jackson.core.JsonToken
-
Method that can be used to check whether this token represents a valid non-structured value.
- isSnapshot() - Method in class com.fasterxml.jackson.core.Version
- isStartHandled() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- isStructEnd() - Method in enum com.fasterxml.jackson.core.JsonToken
-
Accessor that is functionally equivalent to:
this == JsonToken.END_OBJECT || this == JsonToken.END_ARRAY
- isStructStart() - Method in enum com.fasterxml.jackson.core.JsonToken
-
Accessor that is functionally equivalent to:
this == JsonToken.START_OBJECT || this == JsonToken.START_ARRAY
- isThrowable() - Method in class com.fasterxml.jackson.core.type.ResolvedType
- isUknownVersion() - Method in class com.fasterxml.jackson.core.Version
-
Deprecated.Since 2.7 use correctly spelled method
Version.isUnknownVersion()
- isUnknownVersion() - Method in class com.fasterxml.jackson.core.Version
- isValueNode() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns true for all value nodes: ones that are not containers, and that do not represent "missing" nodes in the path.
J
- JacksonException - Exception in com.fasterxml.jackson.core
-
Base class for all Jackson-produced checked exceptions.
- JacksonException(String) - Constructor for exception com.fasterxml.jackson.core.JacksonException
- JacksonException(String, Throwable) - Constructor for exception com.fasterxml.jackson.core.JacksonException
- JacksonException(Throwable) - Constructor for exception com.fasterxml.jackson.core.JacksonException
- JacksonFeature - Interface in com.fasterxml.jackson.core.util
-
Basic API implemented by Enums used for simple Jackson "features": on/off settings and capabilities exposed as something that can be internally represented as bit sets.
- JacksonFeatureSet<F extends JacksonFeature> - Class in com.fasterxml.jackson.core.util
-
Container similar to
EnumSet
meant for storing sets ofJacksonFeature
s (usuallyEnum
s): main difference being that these sets are immutable. - JacksonFeatureSet(int) - Constructor for class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
Constructor for creating instance with specific bitmask, wherein
1
bit means matchingJacksonFeature
is enabled and0
disabled. - JSON_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.base.ParserBase
- JSON_WRITE_CAPABILITIES - Static variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Default capabilities for JSON generator implementations which do not different from "general textual" defaults
- JsonEncoding - Enum in com.fasterxml.jackson.core
-
Enumeration that defines legal encodings that can be used for JSON content, based on list of allowed encodings from JSON specification.
- JsonEOFException - Exception in com.fasterxml.jackson.core.io
-
Specialized
JsonParseException
that is thrown when end-of-input is reached unexpectedly, either within token being decoded, or during skipping of intervening white-space that is not between root-level tokens (that is, is within JSON Object or JSON Array construct). - JsonEOFException(JsonParser, JsonToken, String) - Constructor for exception com.fasterxml.jackson.core.io.JsonEOFException
- JsonFactory - Class in com.fasterxml.jackson.core
-
The main factory class of Jackson package, used to configure and construct reader (aka parser,
JsonParser
) and writer (aka generator,JsonGenerator
) instances. - JsonFactory() - Constructor for class com.fasterxml.jackson.core.JsonFactory
-
Default constructor used to create factory instances.
- JsonFactory(JsonFactoryBuilder) - Constructor for class com.fasterxml.jackson.core.JsonFactory
-
Constructor used by
JsonFactoryBuilder
for instantiation. - JsonFactory(JsonFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.core.JsonFactory
-
Constructor used when copy()ing a factory instance.
- JsonFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.core.JsonFactory
- JsonFactory(TSFBuilder<?, ?>, boolean) - Constructor for class com.fasterxml.jackson.core.JsonFactory
-
Constructor for subtypes; needed to work around the fact that before 3.0, this factory has cumbersome dual role as generic type as well as actual implementation for json.
- JsonFactory.Feature - Enum in com.fasterxml.jackson.core
-
Enumeration that defines all on/off features that can only be changed for
JsonFactory
. - JsonFactoryBuilder - Class in com.fasterxml.jackson.core
-
TSFBuilder
implementation for constructing vanillaJsonFactory
instances for reading/writing JSON encoded content. - JsonFactoryBuilder() - Constructor for class com.fasterxml.jackson.core.JsonFactoryBuilder
- JsonFactoryBuilder(JsonFactory) - Constructor for class com.fasterxml.jackson.core.JsonFactoryBuilder
- JsonGenerationException - Exception in com.fasterxml.jackson.core
-
Exception type for exceptions during JSON writing, such as trying to output content in wrong context (non-matching end-array or end-object, for example).
- JsonGenerationException(String) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
-
Deprecated.
- JsonGenerationException(String, JsonGenerator) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
- JsonGenerationException(String, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
-
Deprecated.
- JsonGenerationException(String, Throwable, JsonGenerator) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
- JsonGenerationException(Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
-
Deprecated.
- JsonGenerationException(Throwable, JsonGenerator) - Constructor for exception com.fasterxml.jackson.core.JsonGenerationException
- JsonGenerator - Class in com.fasterxml.jackson.core
-
Base class that defines public API for writing JSON content.
- JsonGenerator() - Constructor for class com.fasterxml.jackson.core.JsonGenerator
- JsonGenerator.Feature - Enum in com.fasterxml.jackson.core
-
Enumeration that defines all togglable features for generators.
- JsonGeneratorDelegate - Class in com.fasterxml.jackson.core.util
- JsonGeneratorDelegate(JsonGenerator) - Constructor for class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- JsonGeneratorDelegate(JsonGenerator, boolean) - Constructor for class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- JsonGeneratorImpl - Class in com.fasterxml.jackson.core.json
-
Intermediate base class shared by JSON-backed generators like
UTF8JsonGenerator
andWriterBasedJsonGenerator
. - JsonGeneratorImpl(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- JsonLocation - Class in com.fasterxml.jackson.core
-
Object that encapsulates Location information used for reporting parsing (or potentially generation) errors, as well as current location within input streams.
- JsonLocation(Object, long, int, int) - Constructor for class com.fasterxml.jackson.core.JsonLocation
- JsonLocation(Object, long, long, int, int) - Constructor for class com.fasterxml.jackson.core.JsonLocation
- JsonParseException - Exception in com.fasterxml.jackson.core
-
Exception type for parsing problems, used when non-well-formed content (content that does not conform to JSON syntax as per specification) is encountered.
- JsonParseException(JsonParser, String) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
-
Constructor that uses current parsing location as location, and sets processor (accessible via
JsonParseException.getProcessor()
) to specified parser. - JsonParseException(JsonParser, String, JsonLocation) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
- JsonParseException(JsonParser, String, JsonLocation, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
- JsonParseException(JsonParser, String, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
- JsonParseException(String, JsonLocation) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
-
Deprecated.
- JsonParseException(String, JsonLocation, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonParseException
-
Deprecated.
- JsonParser - Class in com.fasterxml.jackson.core
-
Base class that defines public API for reading JSON content.
- JsonParser() - Constructor for class com.fasterxml.jackson.core.JsonParser
- JsonParser(int) - Constructor for class com.fasterxml.jackson.core.JsonParser
- JsonParser.Feature - Enum in com.fasterxml.jackson.core
-
Enumeration that defines all on/off features for parsers.
- JsonParser.NumberType - Enum in com.fasterxml.jackson.core
-
Enumeration of possible "native" (optimal) types that can be used for numbers.
- JsonParserDelegate - Class in com.fasterxml.jackson.core.util
-
Helper class that implements delegation pattern for
JsonParser
, to allow for simple overridability of basic parsing functionality. - JsonParserDelegate(JsonParser) - Constructor for class com.fasterxml.jackson.core.util.JsonParserDelegate
- JsonParserSequence - Class in com.fasterxml.jackson.core.util
-
Helper class that can be used to sequence multiple physical
JsonParser
s to create a single logical sequence of tokens, as a singleJsonParser
. - JsonParserSequence(boolean, JsonParser[]) - Constructor for class com.fasterxml.jackson.core.util.JsonParserSequence
- JsonParserSequence(JsonParser[]) - Constructor for class com.fasterxml.jackson.core.util.JsonParserSequence
-
Deprecated.
- JsonpCharacterEscapes - Class in com.fasterxml.jackson.core
-
Convenience
CharacterEscapes
implementation that escapes Unicode characters `0x2028` and `0x2029` (in addition to characters escaped otherwise), which are apparently considered linefeeds as per newer Javascript specifications, and consequently problematic when using JSONP (see https://en.wikipedia.org/wiki/JSONP). - JsonpCharacterEscapes() - Constructor for class com.fasterxml.jackson.core.JsonpCharacterEscapes
- JsonPointer - Class in com.fasterxml.jackson.core
-
Implementation of JSON Pointer specification.
- JsonPointer() - Constructor for class com.fasterxml.jackson.core.JsonPointer
-
Constructor used for creating "empty" instance, used to represent state that matches current node.
- JsonPointer(String, String, int, JsonPointer) - Constructor for class com.fasterxml.jackson.core.JsonPointer
- JsonPointer(String, String, JsonPointer) - Constructor for class com.fasterxml.jackson.core.JsonPointer
- JsonPointerBasedFilter - Class in com.fasterxml.jackson.core.filter
-
Simple
TokenFilter
implementation that takes a singleJsonPointer
and matches a single value accordingly. - JsonPointerBasedFilter(JsonPointer) - Constructor for class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- JsonPointerBasedFilter(String) - Constructor for class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- JsonProcessingException - Exception in com.fasterxml.jackson.core
-
Intermediate base class for all problems encountered when processing (parsing, generating) JSON content that are not pure I/O problems.
- JsonProcessingException(String) - Constructor for exception com.fasterxml.jackson.core.JsonProcessingException
- JsonProcessingException(String, JsonLocation) - Constructor for exception com.fasterxml.jackson.core.JsonProcessingException
- JsonProcessingException(String, JsonLocation, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonProcessingException
- JsonProcessingException(String, Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonProcessingException
- JsonProcessingException(Throwable) - Constructor for exception com.fasterxml.jackson.core.JsonProcessingException
- JsonReadContext - Class in com.fasterxml.jackson.core.json
-
Extension of
JsonStreamContext
, which implements core methods needed, and also exposes more complete API to parser implementation classes. - JsonReadContext(JsonReadContext, DupDetector, int, int, int) - Constructor for class com.fasterxml.jackson.core.json.JsonReadContext
- JsonReadFeature - Enum in com.fasterxml.jackson.core.json
-
Token reader (parser) features specific to JSON backend.
- JsonStreamContext - Class in com.fasterxml.jackson.core
-
Shared base class for streaming processing contexts used during reading and writing of Json content using Streaming API.
- JsonStreamContext() - Constructor for class com.fasterxml.jackson.core.JsonStreamContext
- JsonStreamContext(int, int) - Constructor for class com.fasterxml.jackson.core.JsonStreamContext
- JsonStreamContext(JsonStreamContext) - Constructor for class com.fasterxml.jackson.core.JsonStreamContext
-
Copy constructor used by sub-classes for creating copies for buffering.
- JsonStringEncoder - Class in com.fasterxml.jackson.core.io
-
Helper class used for efficient encoding of JSON String values (including JSON field names) into Strings or UTF-8 byte arrays.
- JsonStringEncoder() - Constructor for class com.fasterxml.jackson.core.io.JsonStringEncoder
- JsonToken - Enum in com.fasterxml.jackson.core
-
Enumeration for basic token types used for returning results of parsing JSON content.
- JsonTokenId - Interface in com.fasterxml.jackson.core
-
Interface defined to contain ids accessible with
JsonToken.id()
. - JsonWriteContext - Class in com.fasterxml.jackson.core.json
-
Extension of
JsonStreamContext
, which implements core methods needed, and also exposes more complete API to generator implementation classes. - JsonWriteContext(int, JsonWriteContext, DupDetector) - Constructor for class com.fasterxml.jackson.core.json.JsonWriteContext
- JsonWriteContext(int, JsonWriteContext, DupDetector, Object) - Constructor for class com.fasterxml.jackson.core.json.JsonWriteContext
- JsonWriteFeature - Enum in com.fasterxml.jackson.core.json
-
Token writer features specific to JSON backend.
L
- last() - Method in class com.fasterxml.jackson.core.JsonPointer
- LAST_VALID_UNICODE_CHAR - Static variable in class com.fasterxml.jackson.core.io.UTF32Reader
-
JSON actually limits available Unicode range in the high end to the same as xml (to basically limit UTF-8 max byte sequence length to 4)
- loadMore() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Deprecated.
- loadMoreGuaranteed() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Deprecated.
- LONG - com.fasterxml.jackson.core.JsonParser.NumberType
M
- MAJOR_ARRAY_ELEMENT_FIRST - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MAJOR_ARRAY_ELEMENT_NEXT - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MAJOR_CLOSED - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State after non-blocking input source has indicated that no more input is forthcoming AND we have exhausted all the input
- MAJOR_INITIAL - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State right after parser has been constructed, before seeing the first byte to handle possible (but optional) BOM.
- MAJOR_OBJECT_FIELD_FIRST - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MAJOR_OBJECT_FIELD_NEXT - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MAJOR_OBJECT_VALUE - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MAJOR_ROOT - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State right after parser a root value has been finished, but next token has not yet been recognized.
- makeChild(int) - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Factory method used to create actual symbol table instance to use for parsing.
- makeChild(int) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
"Factory" method; will create a new child instance of this symbol table.
- mappedFeature() - Method in enum com.fasterxml.jackson.core.json.JsonReadFeature
- mappedFeature() - Method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
- mappedFeature() - Method in enum com.fasterxml.jackson.core.StreamReadFeature
- mappedFeature() - Method in enum com.fasterxml.jackson.core.StreamWriteFeature
- mark(int) - Method in class com.fasterxml.jackson.core.io.MergedStream
- markSupported() - Method in class com.fasterxml.jackson.core.io.MergedStream
- matchElement(int) - Method in class com.fasterxml.jackson.core.JsonPointer
-
Method that may be called to check whether the pointer head (first segment) matches specified Array index and if so, return
JsonPointer
that represents rest of the path after match. - matches() - Method in class com.fasterxml.jackson.core.JsonPointer
- matchesElement(int) - Method in class com.fasterxml.jackson.core.JsonPointer
-
Method that may be called to see if the pointer would match Array element (of a JSON Array) with given index.
- matchesProperty(String) - Method in class com.fasterxml.jackson.core.JsonPointer
-
Method that may be called to see if the pointer head (first segment) would match property (of a JSON Object) with given name.
- matchProperty(String) - Method in class com.fasterxml.jackson.core.JsonPointer
-
Method that may be called to check whether the pointer head (first segment) matches specified Object property (by name) and if so, return
JsonPointer
that represents rest of the path after match. - MatchStrength - Enum in com.fasterxml.jackson.core.format
-
Enumeration used to indicate strength of match between data format and piece of data (typically beginning of a data file).
- mavenVersionFor(ClassLoader, String, String) - Static method in class com.fasterxml.jackson.core.util.VersionUtil
-
Deprecated.Since 2.6: functionality not used by any official Jackson component, should be moved out if anyone needs it
- MAX_BIG_DECIMAL_SCALE - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
This value is the limit of scale allowed for serializing
BigDecimal
in "plain" (non-engineering) notation; intent is to prevent asymmetric attack whereupon simple eng-notation with big scale is used to generate huge "plain" serialization. - MAX_CONTENT_SNIPPET - Static variable in class com.fasterxml.jackson.core.JsonLocation
-
Include at most first 500 characters/bytes from contents; should be enough to give context, but not cause unfortunate side effects in things like logs.
- MAX_ERROR_TOKEN_LENGTH - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Maximum number of characters to include in token reported as part of error messages.
- MAX_INT_D - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- MAX_INT_L - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- MAX_LONG_D - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- maxCollisionLength() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Method mostly needed by unit tests; calculates length of the longest collision chain.
- maybeDirty() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method called to check to quickly see if a child symbol table may have gotten additional entries.
- maybeDirty() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- mayMatchElement() - Method in class com.fasterxml.jackson.core.JsonPointer
- mayMatchProperty() - Method in class com.fasterxml.jackson.core.JsonPointer
- MergedStream - Class in com.fasterxml.jackson.core.io
-
Simple
InputStream
implementation that is used to "unwind" some data previously read from an input stream; so that as long as some of that data remains, it's returned; but as long as it's read, we'll just use data from the underlying original stream. - MergedStream(IOContext, InputStream, byte[], int, int) - Constructor for class com.fasterxml.jackson.core.io.MergedStream
- METADATA_PROPERTY - com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Inclusion as a property within Object to write, but logically as separate metadata that is not exposed as payload to caller: that is, does not match any of visible properties value object has.
- MIME - Static variable in class com.fasterxml.jackson.core.Base64Variants
-
This variant is what most people would think of "the standard" Base64 encoding.
- MIME_NO_LINEFEEDS - Static variable in class com.fasterxml.jackson.core.Base64Variants
-
Slightly non-standard modification of
Base64Variants.MIME
which does not use linefeeds (max line length set to infinite). - MIN_INT_D - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- MIN_INT_L - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- MIN_LONG_D - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- MinimalPrettyPrinter - Class in com.fasterxml.jackson.core.util
-
PrettyPrinter
implementation that adds no indentation, just implements everything necessary for value output to work as expected, and provide simpler extension points to allow for creating simple custom implementations that add specific decoration or overrides. - MinimalPrettyPrinter() - Constructor for class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- MinimalPrettyPrinter(String) - Constructor for class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- MINOR_COMMENT_C - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_COMMENT_CLOSING_ASTERISK - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_COMMENT_CPP - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_COMMENT_LEADING_SLASH - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_COMMENT_YAML - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_APOS_NAME - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_LEADING_COMMA - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_LEADING_WS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_NAME - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_NAME_ESCAPE - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_FIELD_UNQUOTED_NAME - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_EXPONENT_DIGITS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_EXPONENT_MARKER - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_FRACTION_DIGITS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_INTEGER_DIGITS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_MINUS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_MINUSZERO - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_NUMBER_ZERO - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_ROOT_BOM - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State in which part of (UTF-8) BOM has been detected, but not yet completely.
- MINOR_ROOT_GOT_SEPARATOR - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State between root-level value, having processed at least one white-space character, and expecting either more, start of a value, or end of input stream.
- MINOR_ROOT_NEED_SEPARATOR - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
State between root-level value, waiting for at least one white-space character as separator
- MINOR_VALUE_APOS_STRING - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_EXPECTING_COLON - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_EXPECTING_COMMA - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_LEADING_WS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_STRING - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_STRING_ESCAPE - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_STRING_UTF8_2 - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_STRING_UTF8_3 - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_STRING_UTF8_4 - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_TOKEN_ERROR - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Special state at which point decoding of a non-quoted token has encountered a problem; that is, either not matching fully (like "truf" instead of "true", at "tru"), or not having trailing separator (or end of input), like "trueful".
- MINOR_VALUE_TOKEN_FALSE - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_TOKEN_NON_STD - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_TOKEN_NULL - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_TOKEN_TRUE - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- MINOR_VALUE_WS_AFTER_COMMA - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- missingNode() - Method in class com.fasterxml.jackson.core.TreeCodec
- missingPaddingMessage() - Method in class com.fasterxml.jackson.core.Base64Variant
-
Helper method that will construct a message to use in exceptions for cases where input ends prematurely in place where padding would be expected.
- MODIFIED_FOR_URL - Static variable in class com.fasterxml.jackson.core.Base64Variants
-
This non-standard variant is usually used when encoded data needs to be passed via URLs (such as part of GET request).
N
- NA - Static variable in class com.fasterxml.jackson.core.JsonLocation
-
Shared immutable "N/A location" that can be returned to indicate that no location information is available.
- Name - Class in com.fasterxml.jackson.core.sym
-
Base class for tokenized names (key strings in objects) that have been tokenized from byte-based input sources (like
InputStream
. - Name(String, int) - Constructor for class com.fasterxml.jackson.core.sym.Name
- Name1 - Class in com.fasterxml.jackson.core.sym
-
Specialized implementation of PName: can be used for short Strings that consists of at most 4 bytes.
- Name2 - Class in com.fasterxml.jackson.core.sym
-
Specialized implementation of PName: can be used for short Strings that consists of 5 to 8 bytes.
- Name3 - Class in com.fasterxml.jackson.core.sym
-
Specialized implementation of PName: can be used for short Strings that consists of 9 to 12 bytes.
- NameN - Class in com.fasterxml.jackson.core.sym
-
Generic implementation of PName used for "long" names, where long means that its byte (UTF-8) representation is 13 bytes or more.
- NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.core.io.NumberInput
-
Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
- NC - Static variable in class com.fasterxml.jackson.core.io.UTF32Reader
- needMoreInput() - Method in interface com.fasterxml.jackson.core.async.NonBlockingInputFeeder
-
Method called to check whether it is ok to feed more data: parser returns true if it has no more content to parse (and it is ok to feed more); otherwise false (and no data should yet be fed).
- needMoreInput() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- nextBooleanValue() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextBooleanValue() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextBooleanValue() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextBooleanValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and if it isJsonToken.VALUE_TRUE
orJsonToken.VALUE_FALSE
returns matching Boolean value; otherwise return null. - nextByte() - Method in interface com.fasterxml.jackson.core.format.InputAccessor
-
Returns next byte available, if any; if no more bytes are available, will throw
EOFException
. - nextByte() - Method in class com.fasterxml.jackson.core.format.InputAccessor.Std
- nextFieldName() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextFieldName() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextFieldName() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextFieldName() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and verifies whether it isJsonToken.FIELD_NAME
; if it is, returns same asJsonParser.getCurrentName()
, otherwise null. - nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and verifies whether it isJsonToken.FIELD_NAME
with specified name and returns result of that comparison. - nextIntValue(int) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextIntValue(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextIntValue(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextIntValue(int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and if it isJsonToken.VALUE_NUMBER_INT
returns 32-bit int value; otherwise returns specified default value It is functionally equivalent to: - nextLongValue(long) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextLongValue(long) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextLongValue(long) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextLongValue(long) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and if it isJsonToken.VALUE_NUMBER_INT
returns 64-bit long value; otherwise returns specified default value It is functionally equivalent to: - nextTextValue() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextTextValue() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextTextValue() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextTextValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that fetches next token (as if calling
JsonParser.nextToken()
) and if it isJsonToken.VALUE_STRING
returns contained String value; otherwise returns null. - nextToken() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- nextToken() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- nextToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- nextToken() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- nextToken() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- nextToken() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- nextToken() - Method in class com.fasterxml.jackson.core.JsonParser
-
Main iteration method, which will advance stream enough to determine type of the next token, if any.
- nextToken() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- nextToken() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
- nextTokenToRead() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- nextValue() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- nextValue() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- nextValue() - Method in class com.fasterxml.jackson.core.JsonParser
-
Iteration method that will advance stream enough to determine type of the next token that is a value type (including JSON Array and Object start/end markers).
- nextValue() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- NO_BYTES - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NO_BYTES - Static variable in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- NO_INTS - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NO_MATCH - com.fasterxml.jackson.core.format.MatchStrength
-
Value that indicates that given data can not be in given format.
- NON_STD_TOKEN_INFINITY - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NON_STD_TOKEN_MINUS_INFINITY - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NON_STD_TOKEN_NAN - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NON_STD_TOKEN_PLUS_INFINITY - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NON_STD_TOKEN_VALUES - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NON_STD_TOKENS - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NonBlockingInputFeeder - Interface in com.fasterxml.jackson.core.async
-
Interface used by non-blocking
JsonParser
implementations to feed input to parse. - NonBlockingJsonParser - Class in com.fasterxml.jackson.core.json.async
-
Non-blocking parser implementation for JSON content.
- NonBlockingJsonParser(IOContext, int, ByteQuadsCanonicalizer) - Constructor for class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- NonBlockingJsonParserBase - Class in com.fasterxml.jackson.core.json.async
-
Intermediate base class for non-blocking JSON parsers.
- NonBlockingJsonParserBase(IOContext, int, ByteQuadsCanonicalizer) - Constructor for class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- NopIndenter() - Constructor for class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter
- NOT_AVAILABLE - com.fasterxml.jackson.core.JsonToken
-
NOT_AVAILABLE can be returned if
JsonParser
implementation can not currently return the requested token (usually next one), or even if any will be available, but that may be able to determine this in future. - notFinite(double) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
-
Helper method to verify whether given
double
value is finite (regular rational number} or not (NaN or Infinity). - notFinite(float) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
-
Helper method to verify whether given
float
value is finite (regular rational number} or not (NaN or Infinity). - NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NR_BIGINT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NR_DOUBLE - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NR_FLOAT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
NOTE! Not used by JSON implementation but used by many of binary codecs
- NR_INT - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NR_LONG - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- NR_UNKNOWN - Static variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
- nullNode() - Method in class com.fasterxml.jackson.core.TreeCodec
- NumberInput - Class in com.fasterxml.jackson.core.io
- NumberInput() - Constructor for class com.fasterxml.jackson.core.io.NumberInput
- NumberOutput - Class in com.fasterxml.jackson.core.io
- NumberOutput() - Constructor for class com.fasterxml.jackson.core.io.NumberOutput
- numberType() - Method in interface com.fasterxml.jackson.core.TreeNode
-
If this node is a numeric type (as per
JsonToken.isNumeric()
), returns native type that node uses to store the numeric value; otherwise returns null.
O
- ObjectCodec - Class in com.fasterxml.jackson.core
-
Abstract class that defines the interface that
JsonParser
andJsonGenerator
use to serialize and deserialize regular Java objects (POJOs aka Beans). - ObjectCodec() - Constructor for class com.fasterxml.jackson.core.ObjectCodec
- ONLY_INCLUDE_ALL - com.fasterxml.jackson.core.filter.TokenFilter.Inclusion
-
Tokens will only be included if the filter returns TokenFilter.INCLUDE_ALL
- outputDecorator() - Method in class com.fasterxml.jackson.core.TSFBuilder
- outputDecorator(OutputDecorator) - Method in class com.fasterxml.jackson.core.TSFBuilder
- OutputDecorator - Class in com.fasterxml.jackson.core.io
-
Handler class that can be used to decorate output destinations.
- OutputDecorator() - Constructor for class com.fasterxml.jackson.core.io.OutputDecorator
- outputInt(int, byte[], int) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
-
Method for appending value of given
int
value into specifiedchar[]
. - outputLong(long, byte[], int) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
-
Method for appending value of given
long
value into specifiedchar[]
. - overrideCurrentName(String) - Method in class com.fasterxml.jackson.core.base.ParserBase
- overrideCurrentName(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- overrideCurrentName(String) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- overrideCurrentName(String) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used to change what is considered to be the current (field) name.
- overrideCurrentName(String) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Bulk set method for (re)setting states of
FormatFeature
s, by specifying values (set / clear) along with a mask, to determine which features to change, if any. - overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Bulk set method for (re)setting states of
FormatFeature
s, by specifying values (set / clear) along with a mask, to determine which features to change, if any. - overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Bulk set method for (re)setting states of features specified by
mask
. - overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Bulk set method for (re)setting states of features specified by
mask
. - overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- overrideStdFeatures(int, int) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
P
- PackageVersion - Class in com.fasterxml.jackson.core.json
-
Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
- PackageVersion() - Constructor for class com.fasterxml.jackson.core.json.PackageVersion
- packageVersionFor(Class<?>) - Static method in class com.fasterxml.jackson.core.util.VersionUtil
-
Deprecated.Since 2.12 simply use
VersionUtil.versionFor(Class)
instead - PADDING_ALLOWED - com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour
-
Padding is allowed but not required in Base64 content being read: no exception thrown based on existence or absence, as long as proper padding characters are used.
- PADDING_CHAR_NONE - Static variable in class com.fasterxml.jackson.core.Base64Variant
-
Placeholder used by "no padding" variant, to be used when a character value is needed.
- PADDING_FORBIDDEN - com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour
-
Padding is not allowed in Base64 content being read (finding something that looks like padding at the end of content results in an exception)
- PADDING_REQUIRED - com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour
-
Padding is required in Base64 content being read (missing padding for incomplete ending quartet results in an exception)
- paddingReadBehaviour() - Method in class com.fasterxml.jackson.core.Base64Variant
- PARENT_PROPERTY - com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Inclusion as a property within "parent" Object of value Object to write.
- parseAsDouble(String, double) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseAsInt(String, int) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseAsLong(String, long) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseBigDecimal(char[]) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseBigDecimal(char[], int, int) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseBigDecimal(String) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseDouble(String) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseEscapedName(int[], int, int, int, int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Slower parsing method which is generally branched to when an escape sequence is detected (or alternatively for long names, one crossing input buffer boundary).
- parseEscapedName(int[], int, int, int, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Slower parsing method which is generally branched to when an escape sequence is detected (or alternatively for long names, one crossing input buffer boundary).
- parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.core.io.NumberInput
-
Fast method for parsing unsigned integers that are known to fit into regular 32-bit signed int type.
- parseInt(String) - Static method in class com.fasterxml.jackson.core.io.NumberInput
-
Helper method to (more) efficiently parse integer numbers from String values.
- parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.core.io.NumberInput
- parseLong(String) - Static method in class com.fasterxml.jackson.core.io.NumberInput
-
Similar to
NumberInput.parseInt(String)
but forlong
values. - parseLongName(int, int, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- parseMediumName(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- parseMediumName2(int, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- ParserBase - Class in com.fasterxml.jackson.core.base
-
Intermediate base class used by all Jackson
JsonParser
implementations. - ParserBase(IOContext, int) - Constructor for class com.fasterxml.jackson.core.base.ParserBase
- ParserMinimalBase - Class in com.fasterxml.jackson.core.base
-
Intermediate base class used by all Jackson
JsonParser
implementations, but does not add any additional fields that depend on particular method of obtaining input. - ParserMinimalBase() - Constructor for class com.fasterxml.jackson.core.base.ParserMinimalBase
- ParserMinimalBase(int) - Constructor for class com.fasterxml.jackson.core.base.ParserMinimalBase
- parseVersion(String, String, String) - Static method in class com.fasterxml.jackson.core.util.VersionUtil
-
Method used by
PackageVersion
classes to decode version injected by Maven build. - parseVersionPart(String) - Static method in class com.fasterxml.jackson.core.util.VersionUtil
- path(int) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for accessing value of the specified element of an array node.
- path(String) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for accessing value of the specified field of an object node.
- pathAsPointer() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Factory method for constructing a
JsonPointer
that points to the current location within the stream that this context is for, excluding information about "root context" (only relevant for multi-root-value cases) - pathAsPointer(boolean) - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Factory method for constructing a
JsonPointer
that points to the current location within the stream that this context is for, optionally including "root value index" - PAYLOAD_PROPERTY - com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Inclusion as a "regular" property within Object to write; this implies that its value should come from regular POJO property on serialization, and be deserialized into such property.
- PEM - Static variable in class com.fasterxml.jackson.core.Base64Variants
-
This variant is the one that predates
Base64Variants.MIME
: it is otherwise identical, except that it mandates shorter line length. - PrettyPrinter - Interface in com.fasterxml.jackson.core
-
Interface for objects that implement pretty printer functionality, such as indentation.
- primaryCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method mostly needed by unit tests; calculates number of entries that are in the primary slot set.
- putQuotedUTF8(ByteBuffer) - Method in class com.fasterxml.jackson.core.io.SerializedString
- putQuotedUTF8(ByteBuffer) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method for appending JSON-escaped UTF-8 encoded String value into given
ByteBuffer
, if it fits. - putUnquotedUTF8(ByteBuffer) - Method in class com.fasterxml.jackson.core.io.SerializedString
- putUnquotedUTF8(ByteBuffer) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method for appending unquoted ('raw') UTF-8 encoded String value into given
ByteBuffer
, if it fits.
Q
- QUOTE_FIELD_NAMES - com.fasterxml.jackson.core.json.JsonWriteFeature
-
Feature that determines whether JSON Object field names are quoted using double-quotes, as specified by JSON specification or not.
- QUOTE_FIELD_NAMES - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Deprecated.Since 2.10 use
JsonWriteFeature.QUOTE_FIELD_NAMES
instead - QUOTE_NON_NUMERIC_NUMBERS - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Deprecated.Since 2.10 use
JsonWriteFeature.WRITE_NAN_AS_STRINGS
instead - quoteAsString(CharSequence) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Overloaded variant of
JsonStringEncoder.quoteAsString(String)
. - quoteAsString(CharSequence, StringBuilder) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Method that will quote text contents using JSON standard quoting, and append results to a supplied
StringBuilder
. - quoteAsString(String) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Method that will escape text contents using JSON standard escaping, and return results as a character array.
- quoteAsUTF8(String) - Method in class com.fasterxml.jackson.core.io.JsonStringEncoder
-
Method that will escape text contents using JSON standard escaping, encode resulting String as UTF-8 bytes and return results as a byte array.
- quoteChar() - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- quoteChar(char) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Method that allows specifying an alternate character used for quoting field names (if field name quoting has not been disabled with
JsonWriteFeature.QUOTE_FIELD_NAMES
) and JSON String values.
R
- read() - Method in class com.fasterxml.jackson.core.io.MergedStream
- read() - Method in class com.fasterxml.jackson.core.io.UTF32Reader
-
Although this method is implemented by the base class, AND it should never be called by main code, let's still implement it bit more efficiently just in case
- read(byte[]) - Method in class com.fasterxml.jackson.core.io.MergedStream
- read(byte[], int, int) - Method in class com.fasterxml.jackson.core.io.MergedStream
- read(char[], int, int) - Method in class com.fasterxml.jackson.core.io.UTF32Reader
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.JsonParser
-
Similar to
JsonParser.readBinaryValue(OutputStream)
but allows explicitly specifying base64 variant to use. - readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- readBinaryValue(OutputStream) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be used as an alternative to
JsonParser.getBigIntegerValue()
, especially when value can be large. - ReaderBasedJsonParser - Class in com.fasterxml.jackson.core.json
-
This is a concrete implementation of
JsonParser
, which is based on aReader
to handle low-level character conversion tasks. - ReaderBasedJsonParser(IOContext, int, Reader, ObjectCodec, CharsToNameCanonicalizer) - Constructor for class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called when input comes as a
Reader
, and buffer allocation can be done using default mechanism. - ReaderBasedJsonParser(IOContext, int, Reader, ObjectCodec, CharsToNameCanonicalizer, char[], int, int, boolean) - Constructor for class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called when caller wants to provide input buffer directly, and it may or may not be recyclable use standard recycle context.
- readResolve() - Method in class com.fasterxml.jackson.core.Base64Variant
- readResolve() - Method in class com.fasterxml.jackson.core.io.SerializedString
- readResolve() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that we need to override to actually make restoration go through constructors etc: needed to allow JDK serializability of factory instances.
- readTree(JsonParser) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for deserializing JSON content as tree expressed using set of
TreeNode
instances. - readTree(JsonParser) - Method in class com.fasterxml.jackson.core.TreeCodec
- readValue(JsonParser, ResolvedType) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method to deserialize JSON content into a POJO, type specified with fully resolved type object (so it can be a generic type, including containers like
Collection
andMap
). - readValue(JsonParser, TypeReference<T>) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method to deserialize JSON content into a Java type, reference to which is passed as argument.
- readValue(JsonParser, Class<T>) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method to deserialize JSON content into a non-container type (it can be an array type, however): typically a bean, array or a wrapper type (like
Boolean
). - readValueAs(TypeReference<?>) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method to deserialize JSON content into a Java type, reference to which is passed as argument.
- readValueAs(Class<T>) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method to deserialize JSON content into a non-container type (it can be an array type, however): typically a bean, array or a wrapper type (like
Boolean
). - readValueAsTree() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method to deserialize JSON content into equivalent "tree model", represented by root
TreeNode
of resulting model. - readValues(JsonParser, ResolvedType) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for reading sequence of Objects from parser stream, all with same specified value type.
- readValues(JsonParser, TypeReference<T>) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for reading sequence of Objects from parser stream, all with same specified value type.
- readValues(JsonParser, Class<T>) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for reading sequence of Objects from parser stream, all with same specified value type.
- readValuesAs(TypeReference<T>) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for reading sequence of Objects from parser stream, all with same specified value type.
- readValuesAs(Class<T>) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method for reading sequence of Objects from parser stream, all with same specified value type.
- rebuild() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that allows construction of differently configured factory, starting with settings of this factory.
- release() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method called by the using code to indicate it is done with this instance.
- release() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Method called by the using code to indicate it is done with this instance.
- release() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
-
Clean up method to call to release all buffers this object may be using.
- releaseBase64Buffer(byte[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- releaseBuffered(OutputStream) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- releaseBuffered(OutputStream) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- releaseBuffered(OutputStream) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- releaseBuffered(OutputStream) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- releaseBuffered(OutputStream) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to push back any content that has been read but not consumed by the parser.
- releaseBuffered(Writer) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- releaseBuffered(Writer) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to push back any content that has been read but not consumed by the parser.
- releaseBuffers() - Static method in class com.fasterxml.jackson.core.util.BufferRecyclers
-
Specialized method that will release all recycled
BufferRecycler
if (and only if) recycler tracking has been enabled (seeBufferRecyclers.SYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS
). - releaseBuffers() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to indicate that the underlying buffers should now be recycled if they haven't yet been recycled.
- releaseByteBuffer(int, byte[]) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- releaseCharBuffer(int, char[]) - Method in class com.fasterxml.jackson.core.util.BufferRecycler
- releaseConcatBuffer(char[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- releaseNameCopyBuffer(char[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- releaseReadIOBuffer(byte[]) - Method in class com.fasterxml.jackson.core.io.IOContext
-
Method to call when all the processing buffers can be safely recycled.
- releaseTokenBuffer(char[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- releaseWriteEncodingBuffer(byte[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- reportInvalidBase64Char(Base64Variant, int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- reportInvalidBase64Char(Base64Variant, int, int, String) - Method in class com.fasterxml.jackson.core.base.ParserBase
- reportInvalidNumber(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Method called to throw an exception for input token that looks like a number based on first character(s), but is not valid according to rules of format.
- reportOverflowInt() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Method called to throw an exception for integral (not floating point) input token with value outside of Java signed 32-bit range when requested as
int
. - reportOverflowInt(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- reportOverflowInt(String, JsonToken) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- reportOverflowLong() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Method called to throw an exception for integral (not floating point) input token with value outside of Java signed 64-bit range when requested as
long
. - reportOverflowLong(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- reportOverflowLong(String, JsonToken) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- reportTooManyCollisions(int) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- RequestPayload - Class in com.fasterxml.jackson.core.util
-
Container object used to contain optional information on content being parsed, passed to
JsonParseException
in case of exception being thrown; this may be useful for caller to display information on failure. - RequestPayload(byte[], String) - Constructor for class com.fasterxml.jackson.core.util.RequestPayload
- RequestPayload(CharSequence) - Constructor for class com.fasterxml.jackson.core.util.RequestPayload
- requiresCustomCodec() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that can be called to determine if a custom
ObjectCodec
is needed for binding data parsed usingJsonParser
constructed by this factory (which typically also implies the same for serialization withJsonGenerator
). - requiresCustomCodec() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that can be called to determine if a custom
ObjectCodec
is needed for binding data parsed usingJsonParser
constructed by this factory (which typically also implies the same for serialization withJsonGenerator
). - requiresCustomCodec() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- requiresObjectContext() - Method in enum com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
- requiresPaddingOnRead() - Method in class com.fasterxml.jackson.core.Base64Variant
- requiresPropertyOrdering() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Introspection method that higher-level functionality may call to see whether underlying data format requires a stable ordering of object properties or not.
- requiresPropertyOrdering() - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Introspection method that higher-level functionality may call to see whether underlying data format requires a stable ordering of object properties or not.
- reset() - Method in interface com.fasterxml.jackson.core.format.InputAccessor
-
Method that can be called to reset accessor to read from beginning of input.
- reset() - Method in class com.fasterxml.jackson.core.format.InputAccessor.Std
- reset() - Method in class com.fasterxml.jackson.core.io.MergedStream
- reset() - Method in class com.fasterxml.jackson.core.json.DupDetector
- reset() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- reset(boolean, int, int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- reset(int) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.
- reset(int, int, int) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
-
Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.
- reset(int, TokenFilter, boolean) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- reset(int, Object) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Internal method to allow instance reuse: DO NOT USE unless you absolutely know what you are doing.
- resetAndGetFirstSegment() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
-
Method called when starting "manual" output: will clear out current state and return the first segment buffer to fill
- resetAsNaN(String, double) - Method in class com.fasterxml.jackson.core.base.ParserBase
- resetFloat(boolean, int, int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- resetInt(boolean, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- resetWith(char) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method for clearing out possibly existing content, and replacing them with a single-character content (so
TextBuffer.size()
would return1
) - resetWithCopy(char[], int, int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- resetWithCopy(String, int, int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- resetWithEmpty() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to clear out any content text buffer may have, and initializes buffer to use non-shared data.
- resetWithShared(char[], int, int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Method called to initialize the buffer with a shared copy of data; this means that buffer will just have pointers to actual data.
- resetWithString(String) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- ResolvedType - Class in com.fasterxml.jackson.core.type
-
Type abstraction that represents Java type that has been resolved (i.e.
- ResolvedType() - Constructor for class com.fasterxml.jackson.core.type.ResolvedType
- rootDetector(JsonGenerator) - Static method in class com.fasterxml.jackson.core.json.DupDetector
- rootDetector(JsonParser) - Static method in class com.fasterxml.jackson.core.json.DupDetector
- rootFilter - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Object consulted to determine whether to write parts of content generator is asked to write or not.
- rootFilter - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Object consulted to determine whether to write parts of content generator is asked to write or not.
- rootValueSeparator() - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
- rootValueSeparator(SerializableString) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Method that allows overriding String used for separating root-level JSON values (default is single space character)
- rootValueSeparator(String) - Method in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Method that allows overriding String used for separating root-level JSON values (default is single space character)
S
- SCALARS_AS_OBJECTS - com.fasterxml.jackson.core.StreamReadCapability
-
Capability that indicates that data format may in some cases expose Scalar values (whether typed or untyped) as Object values.
- secondaryCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method mostly needed by unit tests; calculates number of entries in secondary buckets
- SegmentedStringWriter - Class in com.fasterxml.jackson.core.io
-
Efficient alternative to
StringWriter
, based on using segmented internal buffer. - SegmentedStringWriter(BufferRecycler) - Constructor for class com.fasterxml.jackson.core.io.SegmentedStringWriter
- SEPARATOR - Static variable in class com.fasterxml.jackson.core.JsonPointer
-
Character used to separate segments.
- Separators - Class in com.fasterxml.jackson.core.util
-
Value class used with some
PrettyPrinter
implements - Separators() - Constructor for class com.fasterxml.jackson.core.util.Separators
- Separators(char, char, char) - Constructor for class com.fasterxml.jackson.core.util.Separators
- SerializableString - Interface in com.fasterxml.jackson.core
-
Interface that defines how Jackson package can interact with efficient pre-serialized or lazily-serialized and reused String representations.
- SerializedString - Class in com.fasterxml.jackson.core.io
-
String token that can lazily serialize String contained and then reuse that serialization later on.
- SerializedString(String) - Constructor for class com.fasterxml.jackson.core.io.SerializedString
- setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for defining custom escapes factory uses for
JsonGenerator
s it creates. - setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for defining custom escapes factory uses for
JsonGenerator
s it creates. - setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method for associating a
ObjectCodec
(typically acom.fasterxml.jackson.databind.ObjectMapper
) with this factory (and more importantly, parsers and generators it constructs). - setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to set or reset the object to use for writing Java objects as JsonContent (using method
JsonGenerator.writeObject(java.lang.Object)
). - setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.JsonParser
-
Setter that allows defining
ObjectCodec
associated with this parser, if any. - setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- setCurrentAndReturn(int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Convenience method that finishes the current active content segment (by specifying how many characters within consists of valid content) and aggregates and returns resulting contents (similar to a call to
TextBuffer.contentsAsString()
). - setCurrentLength(int) - Method in class com.fasterxml.jackson.core.util.TextBuffer
- setCurrentName(String) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- setCurrentSegmentLength(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.base.ParserBase
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Helper method, usually equivalent to:
getOutputContext().setCurrentValue(v);
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.JsonParser
-
Helper method, usually equivalent to:
getParsingContext().setCurrentValue(v);
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method to call to pass value to be returned via
JsonStreamContext.getCurrentValue()
; typically called indirectly throughJsonParser.setCurrentValue(java.lang.Object)
orJsonGenerator.setCurrentValue(java.lang.Object)
). - setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setCurrentValue(Object) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- setEncoding(JsonEncoding) - Method in class com.fasterxml.jackson.core.io.IOContext
- setFeatureMask(int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Deprecated.
- setFeatureMask(int) - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Deprecated.
- setFeatureMask(int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Deprecated.Since 2.7, use
JsonGenerator.overrideStdFeatures(int, int)
instead -- remove from 2.9 - setFeatureMask(int) - Method in class com.fasterxml.jackson.core.JsonParser
-
Deprecated.Since 2.7, use
JsonParser.overrideStdFeatures(int, int)
instead - setFeatureMask(int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
-
Deprecated.
- setFeatureMask(int) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
-
Deprecated.
- setFieldName(String) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- setHighestNonEscapedChar(int) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- setHighestNonEscapedChar(int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to request that generator escapes all character codes above specified code point (if positive value); or, to not escape any characters except for ones that must be escaped for the data format (if -1).
- setHighestNonEscapedChar(int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setInputDecorator(InputDecorator) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.10 use
TSFBuilder.inputDecorator(InputDecorator)
instead - setOutputDecorator(OutputDecorator) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Deprecated.Since 2.10 use
TSFBuilder.outputDecorator(OutputDecorator)
instead - setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for setting a custom pretty printer, which is usually used to add indentation for improved human readability.
- setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setRequestPayloadOnError(byte[], String) - Method in class com.fasterxml.jackson.core.JsonParser
-
Sets the byte[] request payload and the charset
- setRequestPayloadOnError(RequestPayload) - Method in class com.fasterxml.jackson.core.JsonParser
-
Sets the payload to be passed if
JsonParseException
is thrown. - setRequestPayloadOnError(String) - Method in class com.fasterxml.jackson.core.JsonParser
-
Sets the String request payload
- setRootValueSeparator(SerializableString) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- setRootValueSeparator(SerializableString) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that allows overriding String used for separating root-level JSON values (default is single space character)
- setRootValueSeparator(SerializableString) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setRootValueSeparator(String) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method that allows overriding String used for separating root-level JSON values (default is single space character)
- setRootValueSeparator(String) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- setSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method to call to make this generator use specified schema.
- setSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.JsonParser
-
Method to call to make this parser use specified schema.
- setSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- setSchema(FormatSchema) - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- setSeparators(Separators) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- sHexValues - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Lookup table for the first 256 Unicode characters (ASCII / UTF-8) range.
- SHORT_WRITE - Static variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- sInputCodes - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Lookup table used for determining which input characters need special handling when contained in text segment.
- sInputCodesComment - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Decoding table used to quickly determine characters that are relevant within comment content.
- sInputCodesJsNames - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
To support non-default (and -standard) unquoted field names mode, need to have alternate checking.
- sInputCodesUTF8 - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Additionally we can combine UTF-8 decoding info into similar data table.
- sInputCodesUtf8JsNames - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
This table is similar to Latin-1, except that it marks all "high-bit" code as ok.
- sInputCodesWS - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Decoding table used for skipping white space and comments.
- size() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- size() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- size() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method that returns number of child nodes this node contains: for Array nodes, number of child elements, for Object nodes, number of fields, and for all other nodes 0.
- size() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- size() - Method in class com.fasterxml.jackson.core.util.TextBuffer
- skip(long) - Method in class com.fasterxml.jackson.core.io.MergedStream
- skipChildren() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- skipChildren() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Need to override, re-implement similar to how method defined in
ParserMinimalBase
, to keep state correct here. - skipChildren() - Method in class com.fasterxml.jackson.core.JsonParser
-
Method that will skip all child tokens of an array or object token that the parser currently points to, iff stream points to
JsonToken.START_OBJECT
orJsonToken.START_ARRAY
. - skipChildren() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- skipChildren() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Need to override, re-implement similar to how method defined in
ParserMinimalBase
, to keep state correct here. - skipParentChecks() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
- skipUTF8BOM(DataInput) - Static method in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
-
Helper method that may be called to see if given
DataInput
has BOM marker, and if so, to skip it. - slowParseName() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method called when not even first 8 bytes are guaranteed to come consecutively.
- SOLID_MATCH - com.fasterxml.jackson.core.format.MatchStrength
-
Value that indicates that given data conforms to (one of) canonical form(s) of the data format.
- sourceDescription() - Method in class com.fasterxml.jackson.core.JsonLocation
-
Accessor for getting a textual description of source reference (Object returned by
JsonLocation.getSourceRef()
), as included in description returned byJsonLocation.toString()
. - sOutputEscapes - Static variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
This is the default set of escape codes, over 7-bit ASCII range (first 128 character codes), used for single-byte UTF-8 characters.
- sOutputEscapes128 - Static variable in class com.fasterxml.jackson.core.io.CharTypes
-
Lookup table used for determining which output characters in 7-bit ASCII range need to be quoted.
- spilloverCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method mostly needed by unit tests; calculates number of entries in shared spill-over area
- standardAsciiEscapesForJSON() - Static method in class com.fasterxml.jackson.core.io.CharacterEscapes
-
Helper method that can be used to get a copy of standard JSON escape definitions; this is useful when just wanting to slightly customize definitions.
- START_ARRAY - com.fasterxml.jackson.core.JsonToken
-
START_ARRAY is returned when encountering '[' which signals starting of an Array value
- START_OBJECT - com.fasterxml.jackson.core.JsonToken
-
START_OBJECT is returned when encountering '{' which signals starting of an Object value.
- STATUS_EXPECT_NAME - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- STATUS_EXPECT_VALUE - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- STATUS_OK_AFTER_COLON - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- STATUS_OK_AFTER_COMMA - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- STATUS_OK_AFTER_SPACE - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- STATUS_OK_AS_IS - Static variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- Std(byte[]) - Constructor for class com.fasterxml.jackson.core.format.InputAccessor.Std
-
Constructor used when the full input (or at least enough leading bytes of full input) is available.
- Std(byte[], int, int) - Constructor for class com.fasterxml.jackson.core.format.InputAccessor.Std
-
Constructor used when the full input (or at least enough leading bytes of full input) is available.
- Std(InputStream, byte[]) - Constructor for class com.fasterxml.jackson.core.format.InputAccessor.Std
-
Constructor used when content to check is available via input stream and must be read.
- StreamReadCapability - Enum in com.fasterxml.jackson.core
-
Set of on/off capabilities that a
JsonParser
for given format (or in case of buffering, original format) has. - StreamReadException - Exception in com.fasterxml.jackson.core.exc
-
Intermediate base class for all read-side streaming processing problems, including parsing and input value coercion problems.
- StreamReadException(JsonParser, String) - Constructor for exception com.fasterxml.jackson.core.exc.StreamReadException
- StreamReadException(JsonParser, String, JsonLocation) - Constructor for exception com.fasterxml.jackson.core.exc.StreamReadException
- StreamReadException(JsonParser, String, Throwable) - Constructor for exception com.fasterxml.jackson.core.exc.StreamReadException
- StreamReadException(String, JsonLocation, Throwable) - Constructor for exception com.fasterxml.jackson.core.exc.StreamReadException
- StreamReadFeature - Enum in com.fasterxml.jackson.core
-
Token reader (parser) features not-specific to any particular format backend.
- streamReadFeatures() - Method in class com.fasterxml.jackson.core.TSFBuilder
- StreamWriteCapability - Enum in com.fasterxml.jackson.core
-
Set of on/off capabilities that a
JsonGenerator
for given format (or in case of buffering, original format) has. - StreamWriteFeature - Enum in com.fasterxml.jackson.core
-
Token writer (generator) features not-specific to any particular format backend.
- streamWriteFeatures() - Method in class com.fasterxml.jackson.core.TSFBuilder
- STRICT_DUPLICATE_DETECTION - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that determines whether
JsonGenerator
will explicitly check that no duplicate JSON Object field names are written. - STRICT_DUPLICATE_DETECTION - com.fasterxml.jackson.core.JsonParser.Feature
-
Feature that determines whether
JsonParser
will explicitly check that no duplicate JSON Object field names are encountered. - STRICT_DUPLICATE_DETECTION - com.fasterxml.jackson.core.StreamReadFeature
-
Feature that determines whether
JsonParser
will explicitly check that no duplicate JSON Object field names are encountered. - STRICT_DUPLICATE_DETECTION - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that determines whether
JsonGenerator
will explicitly check that no duplicate JSON Object field names are written. - SURR1_FIRST - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- SURR1_LAST - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- SURR2_FIRST - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- SURR2_LAST - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- switchAndReturnNext() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
- switchToNext() - Method in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Method that will switch active delegate parser from the current one to the next parser in sequence, if there is another parser left: if so, the next parser will become the active delegate parser.
- symbolTableForTests() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- SYS_LF - Static variable in class com.fasterxml.jackson.core.util.DefaultIndenter
- SYSTEM_LINEFEED_INSTANCE - Static variable in class com.fasterxml.jackson.core.util.DefaultIndenter
- SYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS - Static variable in class com.fasterxml.jackson.core.util.BufferRecyclers
-
System property that is checked to see if recycled buffers (see
BufferRecycler
) should be tracked, for purpose of forcing release of all such buffers, typically during major classloading.
T
- tail() - Method in class com.fasterxml.jackson.core.JsonPointer
-
Accessor for getting a "sub-pointer" (or sub-path), instance where current segment has been removed and pointer includes rest of the segments.
- tertiaryCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Method mostly needed by unit tests; calculates number of entries in tertiary buckets
- TextBuffer - Class in com.fasterxml.jackson.core.util
-
TextBuffer is a class similar to
StringBuffer
, with following differences: TextBuffer uses segments character arrays, to avoid having to do additional array copies when array is not big enough. - TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.core.util.TextBuffer
- TextBuffer(BufferRecycler, char[]) - Constructor for class com.fasterxml.jackson.core.util.TextBuffer
- throwInternal() - Static method in class com.fasterxml.jackson.core.util.VersionUtil
- toByteArray() - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
-
Method called when results are finalized and we can get the full aggregated result buffer to return to the caller
- toCanonical() - Method in class com.fasterxml.jackson.core.type.ResolvedType
-
Method that can be used to serialize type into form from which it can be fully deserialized from at a later point (using
TypeFactory
from mapper package). - toFullString() - Method in class com.fasterxml.jackson.core.Version
- TokenFilter - Class in com.fasterxml.jackson.core.filter
-
Strategy class that can be implemented to specify actual inclusion/exclusion criteria for filtering, used by
FilteringGeneratorDelegate
. - TokenFilter() - Constructor for class com.fasterxml.jackson.core.filter.TokenFilter
- TokenFilter.Inclusion - Enum in com.fasterxml.jackson.core.filter
-
Enumeration that controls how TokenFilter return values are interpreted.
- TokenFilterContext - Class in com.fasterxml.jackson.core.filter
-
Alternative variant of
JsonStreamContext
, used when filtering content being read or written (based onTokenFilter
). - TokenFilterContext(int, TokenFilterContext, TokenFilter, boolean) - Constructor for class com.fasterxml.jackson.core.filter.TokenFilterContext
- TokenStreamFactory - Class in com.fasterxml.jackson.core
-
Intermediate base class for actual format-specific factories for constructing parsers (reading) and generators (writing).
- TokenStreamFactory() - Constructor for class com.fasterxml.jackson.core.TokenStreamFactory
- toString() - Method in class com.fasterxml.jackson.core.Base64Variant
- toString() - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- toString() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
- toString() - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Overridden to provide developer writeable "JsonPath" representation of the context.
- toString() - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
- toString() - Method in class com.fasterxml.jackson.core.io.SerializedString
- toString() - Method in class com.fasterxml.jackson.core.JsonLocation
- toString() - Method in class com.fasterxml.jackson.core.JsonPointer
- toString() - Method in exception com.fasterxml.jackson.core.JsonProcessingException
- toString() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Overridden to provide developer readable "JsonPath" representation of the context.
- toString() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- toString() - Method in class com.fasterxml.jackson.core.sym.Name
- toString() - Method in class com.fasterxml.jackson.core.util.RequestPayload
- toString() - Method in class com.fasterxml.jackson.core.util.TextBuffer
-
Note: calling this method may not be as efficient as calling
TextBuffer.contentsAsString()
, since it's not guaranteed that resulting String is cached. - toString() - Method in class com.fasterxml.jackson.core.Version
- toString(double) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- toString(float) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- toString(int) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- toString(long) - Static method in class com.fasterxml.jackson.core.io.NumberOutput
- totalCount() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- traverse() - Method in interface com.fasterxml.jackson.core.TreeNode
-
Method for constructing a
JsonParser
instance for iterating over contents of the tree that this node is root of. - traverse(ObjectCodec) - Method in interface com.fasterxml.jackson.core.TreeNode
-
Same as
TreeNode.traverse()
, but additionally passesObjectCodec
to use ifJsonParser.readValueAs(Class)
is used (otherwise caller must callJsonParser.setCodec(com.fasterxml.jackson.core.ObjectCodec)
on response explicitly). - treeAsTokens(TreeNode) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for constructing a
JsonParser
for reading contents of a JSON tree, as if it was external serialized JSON content. - treeAsTokens(TreeNode) - Method in class com.fasterxml.jackson.core.TreeCodec
- TreeCodec - Class in com.fasterxml.jackson.core
-
Interface that defines objects that can read and write
TreeNode
instances using Streaming API. - TreeCodec() - Constructor for class com.fasterxml.jackson.core.TreeCodec
- TreeNode - Interface in com.fasterxml.jackson.core
-
Marker interface used to denote JSON Tree nodes, as far as the core package knows them (which is very little): mostly needed to allow
ObjectCodec
to have some level of interoperability. - treeToValue(TreeNode, Class<T>) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Convenience method for converting given JSON tree into instance of specified value type.
- TSFBuilder<F extends JsonFactory,B extends TSFBuilder<F,B>> - Class in com.fasterxml.jackson.core
-
Since 2.10, Builder class is offered for creating token stream factories with difference configurations: with 3.x they will be fully immutable.
- TSFBuilder() - Constructor for class com.fasterxml.jackson.core.TSFBuilder
- TSFBuilder(int, int, int) - Constructor for class com.fasterxml.jackson.core.TSFBuilder
- TSFBuilder(JsonFactory) - Constructor for class com.fasterxml.jackson.core.TSFBuilder
- TYPE_ARRAY - Static variable in class com.fasterxml.jackson.core.JsonStreamContext
-
Indicator for "Array" context.
- TYPE_OBJECT - Static variable in class com.fasterxml.jackson.core.JsonStreamContext
-
Indicator for "Object" context.
- TYPE_ROOT - Static variable in class com.fasterxml.jackson.core.JsonStreamContext
-
Indicator for "Root Value" context (has not parent)
- typeDesc() - Method in class com.fasterxml.jackson.core.JsonStreamContext
-
Method for accessing simple type description of current context; either ROOT (for root-level values), OBJECT (for field names and values of JSON Objects) or ARRAY (for values of JSON Arrays)
- TypeReference<T> - Class in com.fasterxml.jackson.core.type
-
This generic abstract class is used for obtaining full generics type information by sub-classing; it must be converted to
ResolvedType
implementation (implemented byJavaType
from "databind" bundle) to be used. - TypeReference() - Constructor for class com.fasterxml.jackson.core.type.TypeReference
U
- unexpectedPaddingMessage() - Method in class com.fasterxml.jackson.core.Base64Variant
-
Helper method that will construct a message to use in exceptions for cases where input ends prematurely in place where padding is not expected.
- unknownVersion() - Static method in class com.fasterxml.jackson.core.Version
-
Method returns canonical "not known" version, which is used as version in cases where actual version information is not known (instead of null).
- UNTYPED_SCALARS - com.fasterxml.jackson.core.StreamReadCapability
-
Capability that indicates that data format only exposed "untyped" scalars: that is, instead of Number, Boolean and String types all scalar values are reported as text (
JsonToken.VALUE_STRING
) unless some sort of coercion is implied by caller. - USE_THREAD_LOCAL_FOR_BUFFER_RECYCLING - com.fasterxml.jackson.core.JsonFactory.Feature
-
Feature that determines whether we will use
BufferRecycler
withThreadLocal
andSoftReference
, for efficient reuse of underlying input/output buffers. - useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for enabling pretty-printing using the default pretty printer (
DefaultPrettyPrinter
). - useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- usesPadding() - Method in class com.fasterxml.jackson.core.Base64Variant
- usesPaddingChar(char) - Method in class com.fasterxml.jackson.core.Base64Variant
- usesPaddingChar(int) - Method in class com.fasterxml.jackson.core.Base64Variant
- UTF16_BE - com.fasterxml.jackson.core.JsonEncoding
- UTF16_LE - com.fasterxml.jackson.core.JsonEncoding
- UTF32_BE - com.fasterxml.jackson.core.JsonEncoding
- UTF32_LE - com.fasterxml.jackson.core.JsonEncoding
- UTF32Reader - Class in com.fasterxml.jackson.core.io
-
Since JDK does not come with UTF-32/UCS-4, let's implement a simple decoder to use.
- UTF32Reader(IOContext, InputStream, byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.core.io.UTF32Reader
- UTF8 - com.fasterxml.jackson.core.JsonEncoding
- UTF8_BOM_1 - Static variable in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- UTF8_BOM_2 - Static variable in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- UTF8_BOM_3 - Static variable in class com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper
- UTF8DataInputJsonParser - Class in com.fasterxml.jackson.core.json
-
This is a concrete implementation of
JsonParser
, which is based on aDataInput
as the input source. - UTF8DataInputJsonParser(IOContext, int, DataInput, ObjectCodec, ByteQuadsCanonicalizer, int) - Constructor for class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- UTF8JsonGenerator - Class in com.fasterxml.jackson.core.json
- UTF8JsonGenerator(IOContext, int, ObjectCodec, OutputStream) - Constructor for class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Deprecated.
- UTF8JsonGenerator(IOContext, int, ObjectCodec, OutputStream, byte[], int, boolean) - Constructor for class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Deprecated.
- UTF8JsonGenerator(IOContext, int, ObjectCodec, OutputStream, char) - Constructor for class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- UTF8JsonGenerator(IOContext, int, ObjectCodec, OutputStream, char, byte[], int, boolean) - Constructor for class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- UTF8StreamJsonParser - Class in com.fasterxml.jackson.core.json
-
This is a concrete implementation of
JsonParser
, which is based on aInputStream
as the input source. - UTF8StreamJsonParser(IOContext, int, InputStream, ObjectCodec, ByteQuadsCanonicalizer, byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Deprecated.Since 2.10
- UTF8StreamJsonParser(IOContext, int, InputStream, ObjectCodec, ByteQuadsCanonicalizer, byte[], int, int, int, boolean) - Constructor for class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- UTF8Writer - Class in com.fasterxml.jackson.core.io
- UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.core.io.UTF8Writer
V
- VALUE_EMBEDDED_OBJECT - com.fasterxml.jackson.core.JsonToken
-
Placeholder token returned when the input source has a concept of embedded Object that are not accessible as usual structure (of starting with
JsonToken.START_OBJECT
, having values, ending withJsonToken.END_OBJECT
), but as "raw" objects. - VALUE_FALSE - com.fasterxml.jackson.core.JsonToken
-
VALUE_FALSE is returned when encountering literal "false" in value context
- VALUE_NULL - com.fasterxml.jackson.core.JsonToken
-
VALUE_NULL is returned when encountering literal "null" in value context
- VALUE_NUMBER_FLOAT - com.fasterxml.jackson.core.JsonToken
-
VALUE_NUMBER_FLOAT is returned when a numeric token other than integer is encountered: that is, a number that does have floating point or exponent marker in it, in addition to one or more digits (or, for non-textual formats, has internal floating-point representation).
- VALUE_NUMBER_INT - com.fasterxml.jackson.core.JsonToken
-
VALUE_NUMBER_INT is returned when an integer numeric token is encountered in value context: that is, a number that does not have floating point or exponent marker in it (consists only of an optional sign, followed by one or more digits; or, for binary formats, is indicated as integral number by internal representation).
- VALUE_STRING - com.fasterxml.jackson.core.JsonToken
-
VALUE_STRING is returned when a String token is encountered in value context (array element, field value, or root-level stand-alone value)
- VALUE_TRUE - com.fasterxml.jackson.core.JsonToken
-
VALUE_TRUE is returned when encountering literal "true" in value context
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in class com.fasterxml.jackson.core.Base64Variants
-
Lookup method for finding one of standard variants by name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.filter.TokenFilter.Inclusion
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.format.MatchStrength
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.json.JsonReadFeature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonEncoding
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonFactory.Feature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonParser.Feature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonParser.NumberType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in class com.fasterxml.jackson.core.JsonPointer
-
Alias for
JsonPointer.compile(java.lang.String)
; added to make instances automatically deserializable by Jackson databind. - valueOf(String) - Static method in enum com.fasterxml.jackson.core.JsonToken
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.StreamReadCapability
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.StreamReadFeature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.StreamWriteCapability
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.StreamWriteFeature
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.fasterxml.jackson.core.Base64Variant.PaddingReadBehaviour
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.filter.TokenFilter.Inclusion
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.format.MatchStrength
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.json.JsonReadFeature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.json.JsonWriteFeature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonEncoding
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonFactory.Feature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonGenerator.Feature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonParser.Feature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonParser.NumberType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.JsonToken
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.StreamReadCapability
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.StreamReadFeature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.StreamWriteCapability
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.StreamWriteFeature
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Returns an array containing the constants of this enum type, in the order they are declared.
- valueShape - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Information about intended shape of the value being written (that is,
WritableTypeId.forValue
); in case of structured values, start token of the structure; for scalars, value token. - verifyInternalConsistency() - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Diagnostics method that will verify that internal data structures are consistent; not meant as user-facing method but only for test suites and possible troubleshooting.
- version() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Implemented with standard version number detection algorithm, typically using a simple generated class, with information extracted from Maven project file during build.
- version() - Method in class com.fasterxml.jackson.core.base.ParserBase
- version() - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- version() - Method in class com.fasterxml.jackson.core.json.PackageVersion
- version() - Method in class com.fasterxml.jackson.core.JsonFactory
- version() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Accessor for finding out version of the bundle that provided this generator instance.
- version() - Method in class com.fasterxml.jackson.core.JsonParser
-
Accessor for getting version of the core package, given a parser instance.
- version() - Method in class com.fasterxml.jackson.core.ObjectCodec
- version() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- version() - Method in class com.fasterxml.jackson.core.util.JsonParserDelegate
- version() - Method in class com.fasterxml.jackson.core.util.VersionUtil
-
Deprecated.
- version() - Method in interface com.fasterxml.jackson.core.Versioned
-
Method called to detect version of the component that implements this interface; returned version should never be null, but may return specific "not available" instance (see
Version
for details). - Version - Class in com.fasterxml.jackson.core
-
Object that encapsulates versioning information of a component.
- Version(int, int, int, String) - Constructor for class com.fasterxml.jackson.core.Version
-
Deprecated.Use variant that takes group and artifact ids
- Version(int, int, int, String, String, String) - Constructor for class com.fasterxml.jackson.core.Version
- VERSION - Static variable in class com.fasterxml.jackson.core.json.PackageVersion
- Versioned - Interface in com.fasterxml.jackson.core
-
Interface that those Jackson components that are explicitly versioned will implement.
- versionFor(Class<?>) - Static method in class com.fasterxml.jackson.core.util.VersionUtil
-
Loads version information by introspecting a class named "PackageVersion" in the same package as the given class.
- VersionUtil - Class in com.fasterxml.jackson.core.util
-
Functionality for supporting exposing of component
Version
s. - VersionUtil() - Constructor for class com.fasterxml.jackson.core.util.VersionUtil
W
- WEAK_MATCH - com.fasterxml.jackson.core.format.MatchStrength
-
Value that indicates that given data could be of specified format (i.e.
- with(F) - Method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
Mutant factory for getting a set in which specified feature is enabled: will either return this instance (if no change), or newly created set (if there is change).
- withArrayIndenter(DefaultPrettyPrinter.Indenter) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- withArrayValueSeparator(char) - Method in class com.fasterxml.jackson.core.util.Separators
- withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.core.json.JsonReadContext
- withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- withEncoding(JsonEncoding) - Method in class com.fasterxml.jackson.core.io.IOContext
- withGenerator(JsonGenerator) - Method in exception com.fasterxml.jackson.core.JsonGenerationException
-
Fluent method that may be used to assign originating
JsonGenerator
, to be accessed usingJsonGenerationException.getProcessor()
. - withIndent(String) - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- withLinefeed(String) - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- withMaxInputLookahead(int) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method that will return a detector instance that allows detectors to read up to specified number of bytes when determining format match strength.
- withMinimalMatch(MatchStrength) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method that will return a detector instance that uses given minimal match level; match that may be returned unless a stronger match is found with other format detectors.
- withObjectEntrySeparator(char) - Method in class com.fasterxml.jackson.core.util.Separators
- withObjectFieldValueSeparator(char) - Method in class com.fasterxml.jackson.core.util.Separators
- withObjectIndenter(DefaultPrettyPrinter.Indenter) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- withOptimalMatch(MatchStrength) - Method in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Method that will return a detector instance that uses given optimal match level (match that is considered sufficient to return, without trying to find stronger matches with other formats).
- without(F) - Method in class com.fasterxml.jackson.core.util.JacksonFeatureSet
-
Mutant factory for getting a set in which specified feature is disabled: will either return this instance (if no change), or newly created set (if there is change).
- withoutSpacesInObjectEntries() - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
"Mutant factory" method that will return a pretty printer instance that does not use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.
- withPaddingAllowed() - Method in class com.fasterxml.jackson.core.Base64Variant
- withPaddingForbidden() - Method in class com.fasterxml.jackson.core.Base64Variant
- withPaddingRequired() - Method in class com.fasterxml.jackson.core.Base64Variant
- withParser(JsonParser) - Method in exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Fluent method that may be used to assign originating
JsonParser
, to be accessed usingStreamReadException.getProcessor()
. - withParser(JsonParser) - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
-
Fluent method that may be used to assign originating
JsonParser
, to be accessed usingStreamReadException.getProcessor()
. - withParser(JsonParser) - Method in exception com.fasterxml.jackson.core.JsonParseException
-
Fluent method that may be used to assign originating
JsonParser
, to be accessed usingJsonParseException.getProcessor()
. - withReadPadding(Base64Variant.PaddingReadBehaviour) - Method in class com.fasterxml.jackson.core.Base64Variant
- withRequestPayload(RequestPayload) - Method in exception com.fasterxml.jackson.core.exc.InputCoercionException
- withRequestPayload(RequestPayload) - Method in exception com.fasterxml.jackson.core.exc.StreamReadException
-
Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes.
- withRequestPayload(RequestPayload) - Method in exception com.fasterxml.jackson.core.JsonParseException
-
Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes.
- withRootSeparator(SerializableString) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- withRootSeparator(String) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- withSeparators(Separators) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Method for configuring separators for this pretty-printer to use
- withSpacesInObjectEntries() - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
"Mutant factory" method that will return a pretty printer instance that does use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.
- withWritePadding(boolean) - Method in class com.fasterxml.jackson.core.Base64Variant
- WRAPPER_ARRAY - com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Inclusion as wrapper Array (1st element type id, 2nd element value).
- WRAPPER_OBJECT - com.fasterxml.jackson.core.type.WritableTypeId.Inclusion
-
Inclusion as wrapper Object that has one key/value pair where type id is the key for typed value.
- wrapperWritten - Variable in class com.fasterxml.jackson.core.type.WritableTypeId
-
Flag that can be set to indicate that wrapper structure was written (during prefix-writing); used to determine if suffix requires matching close markers.
- WritableTypeId - Class in com.fasterxml.jackson.core.type
-
This is a simple value class used between core streaming and higher level databinding to pass information about type ids to write.
- WritableTypeId() - Constructor for class com.fasterxml.jackson.core.type.WritableTypeId
- WritableTypeId(Object, JsonToken) - Constructor for class com.fasterxml.jackson.core.type.WritableTypeId
-
Constructor used when calling a method for generating and writing Type Id; caller only knows value object and its intended shape.
- WritableTypeId(Object, JsonToken, Object) - Constructor for class com.fasterxml.jackson.core.type.WritableTypeId
-
Constructor used when calling a method for writing Type Id; caller knows value object, its intended shape as well as id to use; but not details of wrapping (if any).
- WritableTypeId(Object, Class<?>, JsonToken) - Constructor for class com.fasterxml.jackson.core.type.WritableTypeId
-
Constructor used when calling a method for generating and writing Type Id, but where actual type to use for generating id is NOT the type of value (but its supertype).
- WritableTypeId.Inclusion - Enum in com.fasterxml.jackson.core.type
-
Enumeration of values that matches enum `As` from annotation `JsonTypeInfo`: separate definition to avoid dependency between streaming core and annotations packages; also allows more flexibility in case new values needed at this level of internal API.
- write(byte[]) - Method in class com.fasterxml.jackson.core.io.DataOutputAsStream
- write(byte[]) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- write(byte[], int, int) - Method in class com.fasterxml.jackson.core.io.DataOutputAsStream
- write(byte[], int, int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- write(char[]) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- write(char[]) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- write(char[], int, int) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- write(char[], int, int) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- write(int) - Method in class com.fasterxml.jackson.core.io.DataOutputAsStream
- write(int) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- write(int) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- write(int) - Method in class com.fasterxml.jackson.core.util.ByteArrayBuilder
- write(String) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- write(String) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- write(String, int, int) - Method in class com.fasterxml.jackson.core.io.SegmentedStringWriter
- write(String, int, int) - Method in class com.fasterxml.jackson.core.io.UTF8Writer
- WRITE_BIGDECIMAL_AS_PLAIN - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Feature that determines whether
BigDecimal
entries are serialized usingBigDecimal.toPlainString()
to prevent values to be written using scientific notation. - WRITE_BIGDECIMAL_AS_PLAIN - com.fasterxml.jackson.core.StreamWriteFeature
-
Feature that determines whether
BigDecimal
entries are serialized usingBigDecimal.toPlainString()
to prevent values to be written using scientific notation. - WRITE_BINARY - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- WRITE_BOOLEAN - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- WRITE_NAN_AS_STRINGS - com.fasterxml.jackson.core.json.JsonWriteFeature
-
Feature that determines whether "NaN" ("not a number", that is, not real number) float/double values are output as JSON strings.
- WRITE_NULL - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- WRITE_NUMBER - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- WRITE_NUMBERS_AS_STRINGS - com.fasterxml.jackson.core.json.JsonWriteFeature
-
Feature that forces all regular number values to be written as JSON Strings, instead of as JSON Numbers.
- WRITE_NUMBERS_AS_STRINGS - com.fasterxml.jackson.core.JsonGenerator.Feature
-
Deprecated.Since 2.10 use
JsonWriteFeature.WRITE_NUMBERS_AS_STRINGS
instead - WRITE_RAW - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- WRITE_STRING - Static variable in class com.fasterxml.jackson.core.base.GeneratorBase
- writeArray(double[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Value write method that can be called to write a single array (sequence of
JsonToken.START_ARRAY
, zero or moreJsonToken.VALUE_NUMBER_FLOAT
,JsonToken.END_ARRAY
) - writeArray(double[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeArray(int[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Value write method that can be called to write a single array (sequence of
JsonToken.START_ARRAY
, zero or moreJsonToken.VALUE_NUMBER_INT
,JsonToken.END_ARRAY
) - writeArray(int[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeArray(long[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Value write method that can be called to write a single array (sequence of
JsonToken.START_ARRAY
, zero or moreJsonToken.VALUE_NUMBER_INT
,JsonToken.END_ARRAY
) - writeArray(long[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeArray(String[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Value write method that can be called to write a single array (sequence of
JsonToken.START_ARRAY
, zero or moreJsonToken.VALUE_STRING
,JsonToken.END_ARRAY
) - writeArray(String[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeArrayFieldStart(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") (that will contain a JSON Array value), and the START_ARRAY marker.
- writeArrayValueSeparator(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after an array value has been completely output, and before another value is to be output.
- writeArrayValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Method called after an array value has been completely output, and before another value is to be output.
- writeArrayValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
-
Method called after an array value has been completely output, and before another value is to be output.
- writeBinary(byte[]) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Similar to
JsonGenerator.writeBinary(Base64Variant,byte[],int,int)
, but assumes default to using the Jackson default Base64 variant (which isBase64Variants.MIME_NO_LINEFEEDS
). - writeBinary(byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Similar to
JsonGenerator.writeBinary(Base64Variant,byte[],int,int)
, but default to using the Jackson default Base64 variant (which isBase64Variants.MIME_NO_LINEFEEDS
). - writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will output given chunk of binary data as base64 encoded, as a complete String value (surrounded by double quotes).
- writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeBinary(Base64Variant,byte[],int,int)
, but where input is provided through a stream, allowing for incremental writes without holding the whole input in memory. - writeBinary(Base64Variant, InputStream, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeBinary(InputStream, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Similar to
JsonGenerator.writeBinary(Base64Variant,InputStream,int)
, but assumes default to using the Jackson default Base64 variant (which isBase64Variants.MIME_NO_LINEFEEDS
). - writeBinaryField(String, byte[]) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that contains specified data in base64-encoded form.
- writeBoolean(boolean) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeBoolean(boolean) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeBoolean(boolean) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeBoolean(boolean) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting literal JSON boolean value (one of Strings 'true' and 'false').
- writeBoolean(boolean) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeBooleanField(String, boolean) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has a boolean value.
- writeEmbeddedObject(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called on backends that support passing opaque native values that some data formats support; not used with JSON backend, more common with binary formats.
- writeEmbeddedObject(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeEndArray() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeEndArray() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeEndArray() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeEndArray() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing closing marker of a JSON Array value (character ']'; plus possible white space decoration if pretty-printing is enabled).
- writeEndArray() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeEndArray(JsonGenerator, int) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after an Array value has been completely output (minus closing bracket).
- writeEndArray(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- writeEndArray(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- writeEndObject() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeEndObject() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeEndObject() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeEndObject() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing closing marker of an Object value (character '}'; plus possible white space decoration if pretty-printing is enabled).
- writeEndObject() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeEndObject(JsonGenerator, int) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after an Object value has been completely output (minus closing curly bracket).
- writeEndObject(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- writeEndObject(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- writeFieldId(long) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeFieldId(long) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Alternative to
JsonGenerator.writeFieldName(String)
that may be used in cases where property key is of numeric type; either where underlying format supports such notion (some binary formats do, unlike JSON), or for convenient conversion into String presentation. - writeFieldId(long) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeFieldName(String)
, main difference being that it may perform better as some of processing (such as quoting of certain characters, or encoding into external encoding if supported by generator) can be done just once and reused for later calls. - writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Method that writer is to call before it writes a field name.
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing a field name (JSON String surrounded by double quotes: syntactically identical to a JSON String value), possibly decorated by white space if pretty-printing is enabled.
- writeFieldName(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeIndentation(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.DefaultIndenter
- writeIndentation(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter
- writeIndentation(JsonGenerator, int) - Method in interface com.fasterxml.jackson.core.util.DefaultPrettyPrinter.Indenter
- writeIndentation(JsonGenerator, int) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter
- writeNull() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNull() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNull() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNull() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting literal JSON null value.
- writeNull() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNullField(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has JSON literal value null.
- writeNumber(char[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(char[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(char[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(char[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Overloaded version of
JsonGenerator.writeNumber(String)
with same semantics but possibly more efficient operation. - writeNumber(char[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(double) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(double) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(double) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(double) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting indicate JSON numeric value.
- writeNumber(double) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(float) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(float) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(float) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(float) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting indicate JSON numeric value.
- writeNumber(float) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting given value as JSON number.
- writeNumber(int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(long) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(long) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(long) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(long) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting given value as JSON number.
- writeNumber(long) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(short) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(short) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(short) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(short) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting given value as JSON number.
- writeNumber(short) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(String) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Write method that can be used for custom numeric types that can not be (easily?) converted to "standard" Java number types.
- writeNumber(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting indicate JSON numeric value.
- writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting given value as JSON number.
- writeNumber(BigInteger) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeNumberField(String, double) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, float) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, long) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, short) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, BigDecimal) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeNumberField(String, BigInteger) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has the specified numeric value.
- writeObject(Object) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeObject(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing given Java object (POJO) as Json.
- writeObject(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeObjectEntrySeparator(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after an Object entry (field:value) has been completely output, and before another value is to be output.
- writeObjectEntrySeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Method called after an object entry (field:value) has been completely output, and before another value is to be output.
- writeObjectEntrySeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
-
Method called after an object entry (field:value) has been completely output, and before another value is to be output.
- writeObjectField(String, Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has contents of specific Java object as its value.
- writeObjectFieldStart(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") (that will contain an Object value), and the START_OBJECT marker.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after an object field has been output, but before the value is output.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Method called after an object field has been output, but before the value is output.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
-
Method called after an object field has been output, but before the value is output.
- writeObjectId(Object) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeObjectId(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to output so-called native Object Id.
- writeObjectId(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeObjectRef(Object) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeObjectRef(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to output references to native Object Ids.
- writeObjectRef(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeOmittedField(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeOmittedField(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method called to indicate that a property in this position was skipped.
- writeOmittedField(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writePath(JsonGenerator) - Method in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Method called to ensure that parent path from root is written up to and including this node.
- writeQuotedUTF8(OutputStream) - Method in class com.fasterxml.jackson.core.io.SerializedString
- writeQuotedUTF8(OutputStream) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method for writing JSON-escaped UTF-8 encoded String value using given
OutputStream
. - writeRaw(char) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRaw(char) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRaw(char) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRaw(char) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
- writeRaw(char) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
- writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRaw(SerializableString) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRaw(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRaw(SerializableString) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRaw(SerializableString) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
- writeRaw(SerializableString) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRaw(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRaw(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRaw(String) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRaw(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
- writeRaw(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRaw(String, int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRaw(String, int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRaw(String, int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRaw(String, int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
- writeRaw(String, int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeString(String)
but that takes as its input a UTF-8 encoded String that is to be output as-is, without additional escaping (type of which depends on data format; backslashes for JSON). - writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
- writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRawValue(SerializableString) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeRawValue(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeRawValue(SerializableString) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeRawValue(String)
, but potentially more efficient as it may be able to use pre-encoded content (similar toJsonGenerator.writeRaw(SerializableString)
. - writeRawValue(String) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeRawValue(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRawValue(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that will force generator to copy input text verbatim without any modifications, but assuming it must constitute a single legal JSON value (number, string, boolean, null, Array or List).
- writeRawValue(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
- writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- WriterBasedJsonGenerator - Class in com.fasterxml.jackson.core.json
-
JsonGenerator
that outputs JSON content using aWriter
which handles character encoding. - WriterBasedJsonGenerator(IOContext, int, ObjectCodec, Writer) - Constructor for class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Deprecated.
- WriterBasedJsonGenerator(IOContext, int, ObjectCodec, Writer, char) - Constructor for class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeRootValueSeparator(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called after a root-level value has been completely output, and before another value is to be output.
- writeRootValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- writeRootValueSeparator(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- writeStartArray() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartArray() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeStartArray() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeStartArray() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing starting marker of a Array value (for JSON this is character '['; plus possible white space decoration if pretty-printing is enabled).
- writeStartArray() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartArray(int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartArray(int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Deprecated.Since 2.12 Use
JsonGenerator.writeStartArray(Object, int)
instead - writeStartArray(int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartArray(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called when an Array value is to be output, before any member/child values are output.
- writeStartArray(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- writeStartArray(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- writeStartArray(Object) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartArray(Object) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeStartArray(Object) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeStartArray(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing start marker of an Array value, similar to
JsonGenerator.writeStartArray()
, but also specifying the "current value" to assign to the new Array context being created. - writeStartArray(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartArray(Object, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartArray(Object, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeStartArray(Object, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeStartArray(Object, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing start marker of an Array value, similar to
JsonGenerator.writeStartArray()
, but also specifying the "current value" to assign to the new Array context being created as well as how many elements will be written for the array before callingJsonGenerator.writeEndArray()
. - writeStartArray(Object, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartObject() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartObject() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeStartObject() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeStartObject() - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing starting marker of an Object value (character '{'; plus possible white space decoration if pretty-printing is enabled).
- writeStartObject() - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartObject(JsonGenerator) - Method in interface com.fasterxml.jackson.core.PrettyPrinter
-
Method called when an Object value is to be output, before any fields are output.
- writeStartObject(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- writeStartObject(JsonGenerator) - Method in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing starting marker of an Object value to represent the given Java Object value.
- writeStartObject(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStartObject(Object, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeStartObject(Object, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing starting marker of an Object value to represent the given Java Object value.
- writeStartObject(Object, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeString(char[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeString(char[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeString(char[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeString(char[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting a String value.
- writeString(char[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeString(SerializableString) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeString(SerializableString) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeString(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeString(SerializableString) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeString(SerializableString) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeString(String)
, but that takesSerializableString
which can make this potentially more efficient to call as generator may be able to reuse quoted and/or encoded representation. - writeString(SerializableString) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeString(Reader, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeString(Reader, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeString(Reader, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeString(Reader, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting a String value.
- writeString(Reader, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeString(String) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeString(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeString(String) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeString(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for outputting a String value.
- writeString(String) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeStringField(String, String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Convenience method for outputting a field entry ("member") that has a String value.
- writeTree(JsonGenerator, TreeNode) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method for serializing JSON content from given Tree instance, using specified generator.
- writeTree(JsonGenerator, TreeNode) - Method in class com.fasterxml.jackson.core.TreeCodec
- writeTree(TreeNode) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- writeTree(TreeNode) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method for writing given JSON tree (expressed as a tree where given JsonNode is the root) using this generator.
- writeTree(TreeNode) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeTypeId(Object) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeTypeId(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method that can be called to output so-called native Type Id.
- writeTypeId(Object) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeTypePrefix(WritableTypeId) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Replacement method for
JsonGenerator.writeTypeId(Object)
which is called regardless of whether format has native type ids. - writeTypeSuffix(WritableTypeId) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method to call along with
JsonGenerator.writeTypePrefix(com.fasterxml.jackson.core.type.WritableTypeId)
, but after actual value that has type id has been completely written. - writeUnquotedUTF8(OutputStream) - Method in class com.fasterxml.jackson.core.io.SerializedString
- writeUnquotedUTF8(OutputStream) - Method in interface com.fasterxml.jackson.core.SerializableString
-
Method for writing unescaped UTF-8 encoded String value using given
OutputStream
. - writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Method similar to
JsonGenerator.writeString(String)
but that takes as its input a UTF-8 encoded String which has not been escaped using whatever escaping scheme data format requires (for JSON that is backslash-escaping for control characters and double-quotes; for other formats something else). - writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.core.util.JsonGeneratorDelegate
- writeValue() - Method in class com.fasterxml.jackson.core.json.JsonWriteContext
- writeValue(JsonGenerator, Object) - Method in class com.fasterxml.jackson.core.ObjectCodec
-
Method to serialize given Java Object, using generator provided.
_
- _addName(int[], int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
This is the main workhorse method used when we take a symbol table miss.
- _allowMultipleMatches - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Flag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returning
TokenFilter.INCLUDE_ALL
) and no more checks are made; if `true` then filtering will be applied as necessary until end of content. - _allowMultipleMatches - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Flag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returning
TokenFilter.INCLUDE_ALL
) and no more checks are made; if `true` then filtering will be applied as necessary until end of content. - _appendSourceDesc(StringBuilder) - Method in class com.fasterxml.jackson.core.JsonLocation
- _arrayIndenter - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
By default, let's use only spaces to separate array values.
- _artifactId - Variable in class com.fasterxml.jackson.core.Version
- _ascii(byte[]) - Static method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Deprecated.
- _asciiBytes(String) - Static method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Deprecated.
- _asString - Variable in class com.fasterxml.jackson.core.JsonPointer
-
We will retain representation of the pointer, as a String, so that
JsonPointer.toString()
should be as efficient as possible. - _asString(BigDecimal) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Helper method used to serialize a
BigDecimal
as a String, for serialization, taking into account configuration settings - _base64Buffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the buffer allocated for temporary use with base64 encoding or decoding.
- _bigEndian - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _binaryValue - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
We will hold on to decoded binary data, for duration of current event, so that multiple calls to
ParserBase.getBinaryValue(com.fasterxml.jackson.core.Base64Variant)
will not need to decode data more than once. - _buckets - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Overflow buckets; if primary doesn't match, lookup is done from here.
- _buffer - Variable in class com.fasterxml.jackson.core.format.InputAccessor.Std
- _buffer - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _bufferedData - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Content read during format matching process
- _bufferedEnd - Variable in class com.fasterxml.jackson.core.format.InputAccessor.Std
-
End of valid bytes in the buffer (points to one past last valid)
- _bufferedLength - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Number of bytes available in buffer.
- _bufferedStart - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Pointer to the first byte in buffer available for reading
- _bufferedStart - Variable in class com.fasterxml.jackson.core.format.InputAccessor.Std
- _bufferRecyclable - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Flag that indicates whether the output buffer is recycable (and needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
- _bufferRecycler - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Recycler used for actual allocation/deallocation/reuse
- _byteArrayBuilder - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
ByteArrayBuilder is needed if 'getBinaryValue' is called.
- _byteBuffers - Variable in class com.fasterxml.jackson.core.util.BufferRecycler
- _byteCount - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
-
Total read byte count; used for error reporting purposes
- _byteSymbolCanonicalizer - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Alternative to the basic symbol table, some stream-based parsers use different name canonicalization method.
- _canonicalize - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Whether any canonicalization should be attempted (whether using intern or not.
- _cfgNumbersAsStrings - Variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
Flag set to indicate that implicit conversion from number to JSON String is needed (as per
JsonWriteFeature.WRITE_NUMBERS_AS_STRINGS
). - _cfgPrettyPrinter - Variable in class com.fasterxml.jackson.core.JsonGenerator
-
Object that handles pretty-printing (usually additional white space to make results more human-readable) during output.
- _cfgUnqNames - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Flag that is set if quoting is not to be added around JSON Object property names.
- _characterEscapes - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Definition of custom character escapes to use for generators created by this factory, if any.
- _characterEscapes - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Definition of custom character escapes to use for generators created by this factory, if any.
- _characterEscapes - Variable in class com.fasterxml.jackson.core.JsonFactoryBuilder
- _charBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Intermediate buffer in which characters of a String are copied before being encoded.
- _charBufferLength - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Length of
_charBuffer
- _charBuffers - Variable in class com.fasterxml.jackson.core.util.BufferRecycler
- _charCount - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
-
Total read character count; used for error reporting purposes
- _charset - Variable in class com.fasterxml.jackson.core.util.RequestPayload
- _checkBinaryWrite() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- _checkForExistingToken - Variable in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Configuration that determines whether state of parsers is first verified to see if parser already points to a token (that is,
JsonParser.hasCurrentToken()
returnstrue
), and if so that token is first return beforeJsonParser.nextToken()
is called. - _checkInvalidCopy(Class<?>) - Method in class com.fasterxml.jackson.core.JsonFactory
- _checkParentPath() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- _checkParentPath(boolean) - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- _checkPropertyParentPath() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Specialized variant of
FilteringGeneratorDelegate._checkParentPath()
used when checking parent for a property name to be included with value: rules are slightly different. - _checkRawValueWrite() - Method in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
- _checkStdFeatureChanges(int, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Helper method called to verify changes to standard features.
- _checkStdFeatureChanges(int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Helper method called to verify changes to standard features.
- _checkStdFeatureChanges(int, int) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- _child - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
- _child - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _child - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- _closeArrayScope() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _closed - Variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
Flag that indicates whether generator is closed or not.
- _closed - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Flag that indicates whether parser is closed or not.
- _closeInput() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _closeInput() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _closeInput() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _closeInput() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _closeInput() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _closeObjectScope() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _codec() - Method in class com.fasterxml.jackson.core.JsonParser
- _columnNr - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _columnNr - Variable in class com.fasterxml.jackson.core.JsonLocation
- _concatCBuffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the buffer allocated for buffering it for output, before being encoded: generally this means concatenating output, then encoding when buffer fills up.
- _constructDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Overridable factory method called to instantiate an appropriate
PrettyPrinter
for case of "just use the default one", whenGeneratorBase.useDefaultPrettyPrinter()
is called. - _constructError(String) - Method in class com.fasterxml.jackson.core.JsonParser
-
Helper method for constructing
JsonParseException
s based on current state of the parser - _constructError(String, Throwable) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _constructHead() - Method in class com.fasterxml.jackson.core.JsonPointer
- _constructHead(int, JsonPointer) - Method in class com.fasterxml.jackson.core.JsonPointer
- _context - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _copyBuffer - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Intermediate buffer in which characters of a String are copied before being encoded.
- _copyCurrentContents(JsonParser) - Method in class com.fasterxml.jackson.core.JsonGenerator
- _count - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Total number of Strings in the symbol table; only used for child tables.
- _createContext(Object, boolean) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates desired context object.
- _createDataOutputWrapper(DataOutput) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
- _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates generator for given
Writer
and context object. - _createNonBlockingContext(Object) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates desired context object for async (non-blocking) parsing
- _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates parser using given
Reader
object for reading content passed as raw byte array. - _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates parser using given
char[]
object for accessing content. - _createParser(DataInput, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Optional factory method, expected to be overridden
- _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates desired parser given
InputStream
and context object. - _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates parser using given
Reader
object for reading content. - _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
-
Overridable factory method that actually instantiates generator for given
OutputStream
and context object, using UTF-8 encoding. - _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _currBufferStart - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Since we are fed content that may or may not start at zero offset, we need to keep track of the first byte within that buffer, to be able to calculate logical offset within input "stream"
- _currentEscape - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
When custom escapes are used, this member variable is used internally to hold a reference to currently used escape
- _currentName - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Name of the field of which value is to be parsed; only used for OBJECT contexts
- _currentName - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _currentName - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Name of the field of which value is to be written; only used for OBJECT contexts
- _currentValue - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _currentValue - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- _currInputProcessed - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
- _currInputRow - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Current row location of current point in input buffer, starting from 1, if available.
- _currInputRowAlt - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Alternate row tracker, used to keep track of position by `\r` marker (whereas
_currInputRow
tracks `\n`). - _currInputRowStart - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Current index of the first character of the current row in input buffer.
- _currToken - Variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Last token retrieved via
ParserMinimalBase.nextToken()
, if any. - _currToken - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Last token retrieved via
FilteringParserDelegate.nextToken()
, if any. - _decodeBase64(Base64Variant) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Efficient handling for incremental parsing of base64-encoded textual content.
- _decodeBase64(Base64Variant) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Efficient handling for incremental parsing of base64-encoded textual content.
- _decodeBase64(Base64Variant) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Efficient handling for incremental parsing of base64-encoded textual content.
- _decodeBase64(String, ByteArrayBuilder, Base64Variant) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Helper method that can be used for base64 decoding in cases where encoded content has already been read as a String.
- _decodeBase64Escape(Base64Variant, char, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _decodeBase64Escape(Base64Variant, int, int) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _decodeCharForError(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _decodeCharForError(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _decodeEscaped() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method that sub-classes must implement to support escaped sequences in base64-encoded sections.
- _decodeEscaped() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _decodeEscaped() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _decodeEscaped() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _decodeEscaped() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _decodeSurrogate(int, int) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
- _decorate(DataInput, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _decorate(InputStream, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _decorate(OutputStream, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _decorate(Reader, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _decorate(Writer, IOContext) - Method in class com.fasterxml.jackson.core.JsonFactory
- _detectors - Variable in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Ordered list of factories which both represent data formats to detect (in precedence order, starting with highest) and are used for actual detection.
- _dups - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _dups - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
- _enabled - Variable in class com.fasterxml.jackson.core.util.JacksonFeatureSet
- _encoding - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Encoding used by the underlying stream, if known.
- _endOfInput - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Flag that is sent when calling application indicates that there will be no more input to parse.
- _entityBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
6 character temporary buffer allocated if needed, for constructing escape sequences
- _entityBuffer - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Short (14 char) temporary buffer allocated if needed, for constructing escape sequences
- _eofAsNextChar() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _eofAsNextToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Helper method called at point when all input has been exhausted and input feeder has indicated no more input will be forthcoming.
- _expLength - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Length of the exponent part of the number, if any, not including 'e' marker or sign, just digits.
- _exposedContext - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
In cases where
FilteringParserDelegate._headContext
is "ahead" of context exposed to caller, this context points to what is currently exposed to caller. - _factoryFeatures - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Currently enabled factory features.
- _factoryFeatures - Variable in class com.fasterxml.jackson.core.TSFBuilder
-
Set of
JsonFactory.Feature
s enabled, as bitmask. - _failOnDoS - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Flag that indicates whether we should throw an exception if enough hash collisions are detected (true); or just worked around (false).
- _features - Variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
Bit flag composed of bits that indicate which
JsonGenerator.Feature
s are enabled. - _features - Variable in class com.fasterxml.jackson.core.JsonParser
-
Bit flag composed of bits that indicate which
JsonParser.Feature
s are enabled. - _fieldComplete(String) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _filter - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Filter to use for items in this state (for properties of Objects, elements of Arrays, and root-level values of root context)
- _filterContext - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Although delegate has its own output context it is not sufficient since we actually have to keep track of excluded (filtered out) structures as well as ones delegate actually outputs.
- _filterContext() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
- _findName(int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _findName(int, int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _findName(int, int, int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _finishAndReturnString() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _finishErrorToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishErrorTokenWithEOF() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishFieldWithEscape() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishFloatExponent(boolean, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishFloatFraction() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishKeywordToken(String, int, JsonToken) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishKeywordTokenWithEOF(String, int, JsonToken) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNonStdToken(int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNonStdTokenWithEOF(int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNumberIntegralPart(char[], int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNumberLeadingNegZeroes() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNumberLeadingZeroes() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishNumberMinus(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _finishString() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _finishString() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _finishString() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _finishString() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _finishString2() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _finishToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
-
Method called when decoding of a token has been started, but not yet completed due to missing input; method is to continue decoding due to at least one more byte being made available to decode.
- _finishTokenWithEOF() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
-
Method similar to
NonBlockingJsonParser._finishToken()
, but called when no more input is available, and end-of-input has been detected. - _firstName - Variable in class com.fasterxml.jackson.core.json.DupDetector
- _flags - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
- _flushBuffer() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _flushBuffer() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _fractLength - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Length of the fractional part (not including decimal point or exponent), in characters.
- _generatorFeatures - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Currently enabled generator features.
- _getBufferRecycler() - Method in class com.fasterxml.jackson.core.JsonFactory
-
Method used by factory to create buffer recycler instances for parsers and generators.
- _getByteArrayBuilder() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _getCharDesc(int) - Static method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _getSourceReference() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Helper method used to encapsulate logic of including (or not) of "source reference" when constructing
JsonLocation
instances. - _getText2(JsonToken) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _getText2(JsonToken) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _getText2(JsonToken) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _getText2(JsonToken) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _gotName - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Marker used to indicate that we just wrote a name, and now expect a value to write
- _groupId - Variable in class com.fasterxml.jackson.core.Version
- _handleApos() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _handleApos() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _handleApos() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _handleBase64MissingPadding(Base64Variant) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _handleEOF() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method called when an EOF is encountered between tokens.
- _handleEOF() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Method sub-classes need to implement
- _handleInvalidNumberStart(int, boolean) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called if expected numeric value (due to leading sign) does not look like a number
- _handleInvalidNumberStart(int, boolean) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Method called if expected numeric value (due to leading sign) does not look like a number
- _handleInvalidNumberStart(int, boolean) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method called if expected numeric value (due to leading sign) does not look like a number
- _handleOddName(int) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called when we see non-white space character other than double quote, when expecting a field name.
- _handleOddName(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Method called when we see non-white space character other than double quote, when expecting a field name.
- _handleOddName(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method called when we see non-white space character other than double quote, when expecting a field name.
- _handleOddValue(int) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
- _handleUnexpectedValue(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
- _handleUnexpectedValue(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
- _handleUnrecognizedCharacterEscape(char) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _hashArea - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Primary hash information area: consists of
2 * _hashSize
entries of 16 bytes (4 ints), arranged in a cascading lookup structure (details of which may be tweaked depending on expected rates of collisions). - _hashCode - Variable in class com.fasterxml.jackson.core.sym.Name
- _hashSeed - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _hashShared - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Flag that indicates whether underlying data structures for the main hash area are shared or not.
- _hashShared - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Flag that indicates whether underlying data structures for the main hash area are shared or not.
- _hashSize - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Number of slots for primary entries within
ByteQuadsCanonicalizer._hashArea
; which is at most1/8
of actual size of the underlying array (4-int slots, primary covers only half of the area; plus, additional area for longer symbols after hash area). - _hashToIndex(int) - Method in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Helper method that takes in a "raw" hash value, shuffles it as necessary, and truncates to be used as the index.
- _hasTextualNull(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Helper method used to determine whether we are currently pointing to a String value of "null" (NOT a null token); and, if so, that parser is to recognize and return it similar to if it was real null token.
- _hasToken - Variable in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Flag used to indicate that `JsonParser.nextToken()` should not be called, due to parser already pointing to a token.
- _head - Variable in class com.fasterxml.jackson.core.JsonPointer
-
Reference from currently matching segment (if any) to node before leaf.
- _headContext - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
During traversal this is the actual "open" parse tree, which sometimes is the same as
FilteringParserDelegate._exposedContext
, and at other times is ahead of it. - _icLatin1 - Static variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _icLatin1 - Static variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _icLatin1 - Static variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _icLatin1 - Static variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _in - Variable in class com.fasterxml.jackson.core.format.InputAccessor.Std
- _in - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _includeScalar() - Method in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- _includeScalar() - Method in class com.fasterxml.jackson.core.filter.TokenFilter
-
Overridable default implementation delegated to all scalar value inclusion check methods.
- _inclusion - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Flag that determines whether path leading up to included content should also be automatically included or not.
- _inclusion - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Flag that determines whether path leading up to included content should also be automatically included or not.
- _index - Variable in class com.fasterxml.jackson.core.JsonStreamContext
-
Index of the currently processed entry.
- _indexMask - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Mask used to get index from hash values; equal to
_buckets.length - 1
, when _buckets.length is a power of two. - _inputBuffer - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
-
This buffer is actually provided via
NonBlockingInputFeeder
- _inputBuffer - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Current buffer from which data is read; generally data is read into buffer from input source.
- _inputBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
- _inputData - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _inputDecorator - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Optional helper object that may decorate input sources, to do additional processing on input during parsing.
- _inputDecorator - Variable in class com.fasterxml.jackson.core.TSFBuilder
-
Optional helper object that may decorate input sources, to do additional processing on input during parsing.
- _inputEnd - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Index of character after last available one in the buffer.
- _inputPtr - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Pointer to next available character in buffer
- _inputStream - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _inputType - Variable in exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Input token that represents input value that failed to coerce.
- _intern - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Whether canonical symbol Strings are to be intern()ed before added to the table or not.
- _intLength - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Length of integer part of the number, in characters
- _ioContext - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
I/O context for this reader.
- _ioContext - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- _isNextTokenNameMaybe(int, String) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _itemFilter - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
State that applies to the item within container, used where applicable.
- _itemFilter - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
State that applies to the item within container, used where applicable.
- _jdkSerializeValue - Variable in class com.fasterxml.jackson.core.io.SerializedString
-
Ugly hack, to work through the requirement that _value is indeed final, and that JDK serialization won't call ctor(s).
- _lastClearedToken - Variable in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Last cleared token, if any: that is, value that was in effect when
ParserMinimalBase.clearCurrentToken()
was called. - _lastClearedToken - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Last cleared token, if any: that is, value that was in effect when
FilteringParserDelegate.clearCurrentToken()
was called. - _legacyDisable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- _legacyDisable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- _legacyEnable(JsonGenerator.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- _legacyEnable(JsonParser.Feature) - Method in class com.fasterxml.jackson.core.TSFBuilder
- _length - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _lineNr - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
- _lineNr - Variable in class com.fasterxml.jackson.core.JsonLocation
- _loadMore() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _loadMore() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _loadMoreGuaranteed() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _loadMoreGuaranteed() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _location - Variable in exception com.fasterxml.jackson.core.JsonProcessingException
- _longestCollisionList - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
We need to keep track of the longest collision list; this is needed both to indicate problems with attacks and to allow flushing for other cases.
- _longIntegerDesc(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _longNameOffset - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Offset within
ByteQuadsCanonicalizer._hashArea
that follows main slots and contains quads for longer names (13 bytes or longer), and points to the first available int that may be used for appending quads of the next long name. - _longNumberDesc(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _majorState - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Current main decoding state within logical tree
- _majorStateAfterValue - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Value of
NonBlockingJsonParserBase._majorState
after completing a scalar value - _majorVersion - Variable in class com.fasterxml.jackson.core.Version
- _managedBuffers - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _managedResource - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Flag that indicates whether underlying input/output source/target object is fully managed by the owner of this context (parser or generator).
- _match - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Factory that produced sufficient match (if any)
- _matchCount - Variable in class com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate
-
Number of tokens for which
TokenFilter.INCLUDE_ALL
has been returned - _matchCount - Variable in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Number of tokens for which
TokenFilter.INCLUDE_ALL
has been returned. - _matchFalse() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _matchingElementIndex - Variable in class com.fasterxml.jackson.core.JsonPointer
- _matchingPropertyName - Variable in class com.fasterxml.jackson.core.JsonPointer
- _matchNull() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _matchStrength - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
-
Strength of match with
DataFormatMatcher._match
- _matchToken(String, int) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Helper method for checking whether input matches expected token
- _matchToken(String, int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _matchToken(String, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _matchTrue() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _maximumNonEscapedChar - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Value between 128 (0x80) and 65535 (0xFFFF) that indicates highest Unicode code point that will not need escaping; or 0 to indicate that all characters can be represented without escaping.
- _maximumNonEscapedChar - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Optional threshold used for automatically escaping character above certain character code value: either
0
to indicate that no threshold is specified, or value at or above 127 to indicate last character code that is NOT automatically escaped (but depends on other configuration rules for checking). - _maximumNonEscapedChar - Variable in class com.fasterxml.jackson.core.JsonFactoryBuilder
- _maxInputLookahead - Variable in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Maximum number of leading bytes of the input that we can read to determine data format.
- _minimalMatch - Variable in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Strength of minimal match we accept as the answer, unless better matches are found.
- _minorState - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Additional indicator within state; contextually relevant for just that state
- _minorStateAfterSplit - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Secondary minor state indicator used during decoding of escapes and/or multi-byte Unicode characters
- _minorVersion - Variable in class com.fasterxml.jackson.core.Version
- _name - Variable in class com.fasterxml.jackson.core.sym.Name
- _nameCopied - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Flag set to indicate whether the field name is available from the name copy buffer or not (in addition to its String representation being available via read context)
- _nameCopyBuffer - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Temporary buffer that is needed if field name is accessed using
ParserMinimalBase.getTextCharacters()
method (instead of String returning alternatives) - _nameCopyBuffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference temporary buffer Parser instances need if calling app decides it wants to access name via 'getTextCharacters' method.
- _names - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Array that contains
String
instances matching entries inByteQuadsCanonicalizer._hashArea
. - _nameStartCol - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _nameStartCol - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _nameStartOffset - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Value of
ParserBase._inputPtr
at the time when the first character of name token was read. - _nameStartOffset - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Value of
ParserBase._inputPtr
at the time when the first character of name token was read. - _nameStartRow - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _nameStartRow - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _needToHandleName - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Flag that indicates that the current name of this context still needs to be read/written, if path from root down to included leaf is to be exposed.
- _nesting - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Number of open levels of nesting.
- _nextByte - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Sometimes we need buffering for just a single byte we read but have to "push back"
- _nextParserIndex - Variable in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Index of the next parser in
JsonParserSequence._parsers
. - _nextSegment - Variable in class com.fasterxml.jackson.core.JsonPointer
-
Reference to rest of the pointer beyond currently matching segment (if any); null if this pointer refers to the matching segment.
- _nextToken - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Secondary token related to the next token after current one; used if its type is known.
- _nextToken2() - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Offlined handling for cases where there was no buffered token to return, and the token read next could not be returned as-is, at least not yet, but where we have not yet established that buffering is needed.
- _nextTokenWithBuffering(TokenFilterContext) - Method in class com.fasterxml.jackson.core.filter.FilteringParserDelegate
-
Method called when a new potentially included context is found.
- _nonStdToken(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _nonStdTokenType - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
When tokenizing non-standard ("odd") tokens, this is the type to consider; also works as index to actual textual representation.
- _numberBigDecimal - Variable in class com.fasterxml.jackson.core.base.ParserBase
- _numberBigInt - Variable in class com.fasterxml.jackson.core.base.ParserBase
- _numberDouble - Variable in class com.fasterxml.jackson.core.base.ParserBase
- _numberInt - Variable in class com.fasterxml.jackson.core.base.ParserBase
- _numberLong - Variable in class com.fasterxml.jackson.core.base.ParserBase
- _numberNegative - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Flag that indicates whether numeric value has a negative value.
- _numTypesValid - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Bitfield that indicates which numeric representations have been calculated for the current type
- _objectCodec - Variable in class com.fasterxml.jackson.core.base.GeneratorBase
- _objectCodec - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _objectCodec - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Codec used for data binding when (if) requested; typically full
ObjectMapper
, but that abstract is not part of core package. - _objectCodec - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Codec used for data binding when (if) requested; typically full
ObjectMapper
, but that abstract is not part of core package. - _objectCodec - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Object that implements conversion functionality between Java objects and JSON content.
- _objectFieldValueSeparatorWithSpaces - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- _objectIndenter - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
By default, let's use linefeed-adding indenter for separate object entries.
- _optimalMatch - Variable in class com.fasterxml.jackson.core.format.DataFormatDetector
-
Strength of match we consider to be good enough to be used without checking any other formats.
- _optimizedStreamFromURL(URL) - Method in class com.fasterxml.jackson.core.TokenStreamFactory
-
Helper methods used for constructing an optimal stream for parsers to use, when input is to be read from an URL.
- _origBufferLen - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
-
In addition to current buffer pointer, and end pointer, we will also need to know number of bytes originally contained.
- _originalStream - Variable in class com.fasterxml.jackson.core.format.DataFormatMatcher
- _output - Variable in class com.fasterxml.jackson.core.io.DataOutputAsStream
- _outputBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Intermediate buffer in which contents are buffered before being written using
UTF8JsonGenerator._outputStream
. - _outputBuffer - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Intermediate buffer in which contents are buffered before being written using
WriterBasedJsonGenerator._writer
. - _outputDecorator - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Optional helper object that may decorate output object, to do additional processing on output during content generation.
- _outputDecorator - Variable in class com.fasterxml.jackson.core.TSFBuilder
-
Optional helper object that may decorate output object, to do additional processing on output during content generation.
- _outputEnd - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
End marker of the output buffer; one past the last valid position within the buffer.
- _outputEnd - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
End marker of the output buffer; one past the last valid position within the buffer.
- _outputEscapes - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Currently active set of output escape code definitions (whether and how to escape or not) for 7-bit ASCII range (first 128 character codes).
- _outputHead - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Pointer to the first buffered character to output
- _outputMaxContiguous - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Maximum number of
char
s that we know will always fit in the output buffer after escaping - _outputStream - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Underlying output stream used for writing JSON content.
- _outputSurrogates(int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _outputTail - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Pointer to the position right beyond the last character to output (end marker; may be past the buffer)
- _outputTail - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Pointer to the position right beyond the last character to output (end marker; may point to position right beyond the end of the buffer)
- _overflows - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Lazily constructed structure that is used to keep track of collision buckets that have overflowed once: this is used to detect likely attempts at denial-of-service attacks that uses hash collisions.
- _padLastQuad(int, int) - Static method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Helper method needed to fix [jackson-core#148], masking of 0x00 character
- _parent - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Parent context for this context; null for root context.
- _parent - Variable in class com.fasterxml.jackson.core.json.JsonReadContext
-
Parent context for this context; null for root context.
- _parent - Variable in class com.fasterxml.jackson.core.json.JsonWriteContext
-
Parent context for this context; null for root context.
- _parent - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Reference to the root symbol table, for child tables, so that they can merge table information back as necessary.
- _parent - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Sharing of learnt symbols is done by optional linking of symbol table instances with their parents.
- _parseAposName() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _parseAposName() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _parseAposName() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _parseFloatThatStartsWithPeriod() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _parseFloatThatStartsWithPeriod() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _parseFloatThatStartsWithPeriod() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _parseIntValue() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _parseName() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _parseName(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _parseName(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _parseNegNumber() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _parseNegNumber() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _parseNegNumber() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _parseNumericValue(int) - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method that will parse actual numeric value out of a syntactically valid number value.
- _parsePosNumber(int) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Initial parsing method for number values.
- _parsePosNumber(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Initial parsing method for number values.
- _parsePosNumber(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Initial parsing method for number values.
- _parseQuotedTail(String, int) - Static method in class com.fasterxml.jackson.core.JsonPointer
-
Method called to parse tail of pointer path, when a potentially escaped character has been seen.
- _parserFeatures - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Currently enabled parser features.
- _parsers - Variable in class com.fasterxml.jackson.core.util.JsonParserSequence
-
Parsers other than the first one (which is initially assigned as delegate)
- _parseTail(String) - Static method in class com.fasterxml.jackson.core.JsonPointer
- _parsingContext - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Information about parser context, context in which the next token is to be parsed (root, array, object).
- _patchLevel - Variable in class com.fasterxml.jackson.core.Version
- _pathToMatch - Variable in class com.fasterxml.jackson.core.filter.JsonPointerBasedFilter
- _payloadAsBytes - Variable in class com.fasterxml.jackson.core.util.RequestPayload
- _payloadAsText - Variable in class com.fasterxml.jackson.core.util.RequestPayload
- _pending32 - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _pendingBytes - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _processor - Variable in exception com.fasterxml.jackson.core.exc.StreamReadException
- _processor - Variable in exception com.fasterxml.jackson.core.JsonGenerationException
- _ptr - Variable in class com.fasterxml.jackson.core.format.InputAccessor.Std
-
Pointer to next available buffered byte in
InputAccessor.Std._buffer
. - _ptr - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _quad1 - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _quadBuffer - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Temporary buffer used for name parsing.
- _quadBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Temporary buffer used for name parsing.
- _quadBuffer - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Temporary buffer used for name parsing.
- _quadLength - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _quoteChar - Variable in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Character used for quoting JSON Object property names and String values.
- _quoteChar - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Character used for quoting JSON Object property names and String values.
- _quoteChar - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Character used for quoting field names (if field name quoting has not been disabled with
JsonWriteFeature.QUOTE_FIELD_NAMES
) and JSON String values. - _quoteChar - Variable in class com.fasterxml.jackson.core.JsonFactoryBuilder
-
Character used for quoting field names (if field name quoting has not been disabled with
JsonWriteFeature.QUOTE_FIELD_NAMES
) and JSON String values. - _quoted32 - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _quotedChars - Variable in class com.fasterxml.jackson.core.io.SerializedString
- _quotedDigits - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _quotedUTF8Ref - Variable in class com.fasterxml.jackson.core.io.SerializedString
- _readBinary(Base64Variant, OutputStream, byte[]) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _readBinary(Base64Variant, OutputStream, byte[]) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _readBinary(Base64Variant, OutputStream, byte[]) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reader - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Reader that can be used for reading more content, if one buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
- _readIOBuffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the allocated I/O buffer for low-level input reading, if any allocated.
- _recyclerRef - Static variable in class com.fasterxml.jackson.core.util.BufferRecyclers
-
This
ThreadLocal
contains aSoftReference
to aBufferRecycler
used to provide a low-cost buffer recycling between reader and writer instances. - _releaseBuffers() - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Method called to release any buffers generator may be holding, once generator is being closed.
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method called to release internal buffers owned by the base reader.
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called to release internal buffers owned by the base reader.
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Method called to release internal buffers owned by the base reader.
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method called to release internal buffers owned by the base reader.
- _releaseBuffers() - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _reportBase64EOF() - Method in class com.fasterxml.jackson.core.Base64Variant
- _reportBase64UnexpectedPadding() - Method in class com.fasterxml.jackson.core.Base64Variant
- _reportCantWriteValueExpectName(String) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- _reportError(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportError(String) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Helper method used for constructing and throwing
JsonGenerationException
with given base message. - _reportError(String, Object) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportError(String, Object, Object) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportErrorToken(String) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _reportInputCoercion(String, JsonToken, Class<?>) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportInvalidBase64(char, int, String) - Method in class com.fasterxml.jackson.core.Base64Variant
- _reportInvalidChar(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _reportInvalidChar(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _reportInvalidChar(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidEOF() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportInvalidEOF(String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Deprecated.Since 2.8 use
ParserMinimalBase._reportInvalidEOF(String, JsonToken)
instead - _reportInvalidEOF(String, JsonToken) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportInvalidEOFInValue() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
-
Deprecated.Since 2.8 use
ParserMinimalBase._reportInvalidEOF(String, JsonToken)
instead - _reportInvalidEOFInValue(JsonToken) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportInvalidInitial(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _reportInvalidInitial(int) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _reportInvalidInitial(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidOther(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _reportInvalidOther(int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidOther(int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _reportInvalidOther(int, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidToken(int, String) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _reportInvalidToken(int, String, String) - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
- _reportInvalidToken(String) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _reportInvalidToken(String) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidToken(String, int) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportInvalidToken(String, String) - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _reportInvalidToken(String, String) - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
- _reportMismatchedEndMarker(int, char) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _reportMissingRootWS(int) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportTooLongIntegral(int, String) - Method in class com.fasterxml.jackson.core.base.ParserBase
- _reportTooManyCollisions() - Method in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
- _reportUnexpectedChar(int, String) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _reportUnsupportedOperation() - Method in class com.fasterxml.jackson.core.JsonGenerator
- _reportUnsupportedOperation() - Method in class com.fasterxml.jackson.core.JsonParser
-
Helper method to call for operations that are not supported by parser implementation.
- _requestPayload - Variable in exception com.fasterxml.jackson.core.exc.StreamReadException
-
Optional payload that can be assigned to pass along for error reporting or handling purposes.
- _requestPayload - Variable in class com.fasterxml.jackson.core.JsonParser
-
Optional container that holds the request payload which will be displayed on JSON parsing error.
- _rootCharSymbols - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Each factory comes equipped with a shared root symbol table.
- _rootSeparator - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
String printed between root-level values, if any.
- _rootValueSeparator - Variable in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
-
Separator to use, if any, between root-level values.
- _rootValueSeparator - Variable in class com.fasterxml.jackson.core.JsonFactory
-
Separator used between root-level values, if any; null indicates "do not add separator".
- _rootValueSeparator - Variable in class com.fasterxml.jackson.core.JsonFactoryBuilder
- _rootValueSeparator - Variable in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- _secondaryStart - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Offset within
ByteQuadsCanonicalizer._hashArea
where secondary entries start - _secondName - Variable in class com.fasterxml.jackson.core.json.DupDetector
- _seed - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Seed value we use as the base to make hash codes non-static between different runs, but still stable for lifetime of a single symbol table instance.
- _seed - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Seed value we use as the base to make hash codes non-static between different runs, but still stable for lifetime of a single symbol table instance.
- _seen - Variable in class com.fasterxml.jackson.core.json.DupDetector
-
Lazily constructed set of names already seen within this context.
- _separators - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- _separators - Variable in class com.fasterxml.jackson.core.util.MinimalPrettyPrinter
- _size - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Current size (number of entries); needed to know if and when rehash.
- _sizeThreshold - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Limit that indicates maximum size this instance can hold before it needs to be expanded and rehashed.
- _skipCR() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
We actually need to check the character value here (to see if we have \n following \r).
- _skipCR() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
We actually need to check the character value here (to see if we have \n following \r).
- _skipString() - Method in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Method called to skim through rest of unparsed String value, if it is not needed.
- _skipString() - Method in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Method called to skim through rest of unparsed String value, if it is not needed.
- _skipString() - Method in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Method called to skim through rest of unparsed String value, if it is not needed.
- _snapshotInfo - Variable in class com.fasterxml.jackson.core.Version
-
Additional information for snapshot versions; null for non-snapshot (release) versions.
- _source - Variable in class com.fasterxml.jackson.core.json.DupDetector
-
We need to store a back-reference here to parser/generator.
- _sourceRef - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the source object, which can be used for displaying location information
- _spacesInObjectEntries - Variable in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
By default we will add spaces around colons used to separate object fields and values.
- _spilloverEnd - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Pointer to the offset within spill-over area where there is room for more spilled over entries (if any).
- _startAposString() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startArrayScope() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _startFalseToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startFloat(char[], int, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startFloatThatStartsWithPeriod() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startHandled - Variable in class com.fasterxml.jackson.core.filter.TokenFilterContext
-
Flag that indicates that start token has been read/written, so that matching close token needs to be read/written as well when context is getting closed.
- _startNegativeNumber() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startNullToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startNumberLeadingZero() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startObjectScope() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _startPositiveNumber(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startString() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startTrueToken() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _startUnexpectedValue(boolean, int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParser
- _streamReadFeatures - Variable in class com.fasterxml.jackson.core.TSFBuilder
-
Set of
JsonParser.Feature
s enabled, as bitmask. - _streamWriteFeatures - Variable in class com.fasterxml.jackson.core.TSFBuilder
-
Set of
JsonGenerator.Feature
s enabled, as bitmask. - _surrogate - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
-
Although input is fine with full Unicode set, Java still uses 16-bit chars, so we may have to split high-order chars into surrogate pairs.
- _symbols - Variable in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
-
Symbol table that contains field names encountered so far
- _symbols - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
- _symbols - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Symbol table that contains field names encountered so far
- _symbols - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Symbol table that contains field names encountered so far
- _symbols - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Primary matching symbols; it's expected most match occur from here.
- _tableInfo - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Member that is only used by the root table instance: root passes immutable state info child instances, and children may return new state if they add entries to the table.
- _tableInfo - Variable in class com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
-
Member that is only used by the root table instance: root passes immutable state info child instances, and children may return new state if they add entries to the table.
- _targetType - Variable in exception com.fasterxml.jackson.core.exc.InputCoercionException
-
Target type that input value failed to coerce to.
- _tertiaryShift - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Constant that determines size of buckets for tertiary entries:
1 << _tertiaryShift
is the size, and shift value is also used for translating from primary offset into tertiary bucket (shift right by4 + _tertiaryShift
). - _tertiaryStart - Variable in class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
-
Offset within
ByteQuadsCanonicalizer._hashArea
where tertiary entries start - _textBuffer - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Buffer that contains contents of String values, including field names if necessary (name split across boundary, contains escape sequence, or access needed to char array)
- _this() - Method in class com.fasterxml.jackson.core.TSFBuilder
- _throwInternal() - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _throwInternal() - Method in class com.fasterxml.jackson.core.JsonGenerator
- _throwInvalidSpace(int) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _throwUnquotedSpace(int, String) - Method in class com.fasterxml.jackson.core.base.ParserBase
-
Method called to report a problem with unquoted control character.
- _tmpBuf - Variable in class com.fasterxml.jackson.core.io.UTF32Reader
- _token - Variable in exception com.fasterxml.jackson.core.io.JsonEOFException
-
Type of token that was being decoded, if parser had enough information to recognize type (such as starting double-quote for Strings)
- _tokenCBuffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the buffer allocated for tokenization purposes, in which character input is read, and from which it can be further returned.
- _tokenIncomplete - Variable in class com.fasterxml.jackson.core.json.ReaderBasedJsonParser
-
Flag that indicates that the current token has not yet been fully processed, and needs to be finished for some access (or skipped to obtain the next token)
- _tokenIncomplete - Variable in class com.fasterxml.jackson.core.json.UTF8DataInputJsonParser
-
Flag that indicates that the current token has not yet been fully processed, and needs to be finished for some access (or skipped to obtain the next token)
- _tokenIncomplete - Variable in class com.fasterxml.jackson.core.json.UTF8StreamJsonParser
-
Flag that indicates that the current token has not yet been fully processed, and needs to be finished for some access (or skipped to obtain the next token)
- _tokenInputCol - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
- _tokenInputRow - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Input row on which current token starts, 1-based
- _tokenInputTotal - Variable in class com.fasterxml.jackson.core.base.ParserBase
-
Total number of bytes/characters read before start of current token.
- _totalBytes - Variable in class com.fasterxml.jackson.core.JsonLocation
- _totalChars - Variable in class com.fasterxml.jackson.core.JsonLocation
- _type - Variable in class com.fasterxml.jackson.core.JsonStreamContext
-
Indicates logical type of context as one of
TYPE_xxx
consants. - _type - Variable in class com.fasterxml.jackson.core.type.TypeReference
- _unquotedUTF8Ref - Variable in class com.fasterxml.jackson.core.io.SerializedString
- _updateTokenLocation() - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _validJsonTokenList() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _validJsonValueList() - Method in class com.fasterxml.jackson.core.base.ParserBase
- _value - Variable in class com.fasterxml.jackson.core.io.SerializedString
- _valueComplete(JsonToken) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _valueCompleteInt(int, String) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _valueNonStdNumberComplete(int) - Method in class com.fasterxml.jackson.core.json.async.NonBlockingJsonParserBase
- _verifyAlloc(Object) - Method in class com.fasterxml.jackson.core.io.IOContext
- _verifyOffsets(int, int, int) - Method in class com.fasterxml.jackson.core.JsonGenerator
- _verifyPrettyValueWrite(String, int) - Method in class com.fasterxml.jackson.core.json.JsonGeneratorImpl
- _verifyRelease(byte[], byte[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- _verifyRelease(char[], char[]) - Method in class com.fasterxml.jackson.core.io.IOContext
- _verifyValueWrite(String) - Method in class com.fasterxml.jackson.core.base.GeneratorBase
-
Method called before trying to write a value (scalar or structured), to verify that this is legal in current output state, as well as to output separators if and as necessary.
- _verifyValueWrite(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _verifyValueWrite(String) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _withSpaces(boolean) - Method in class com.fasterxml.jackson.core.util.DefaultPrettyPrinter
- _wrapError(String, Throwable) - Method in class com.fasterxml.jackson.core.base.ParserMinimalBase
- _writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writeBinary(Base64Variant, InputStream, byte[]) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _writeBinary(Base64Variant, InputStream, byte[]) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writeBinary(Base64Variant, InputStream, byte[], int) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _writeBinary(Base64Variant, InputStream, byte[], int) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writeContext - Variable in class com.fasterxml.jackson.core.base.GeneratorBase
-
Object that keeps track of the current contextual state of the generator.
- _writeEncodingBuffer - Variable in class com.fasterxml.jackson.core.io.IOContext
-
Reference to the allocated I/O buffer used for low-level encoding-related buffering.
- _writeFieldName(SerializableString, boolean) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writeFieldName(String, boolean) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writePPFieldName(SerializableString) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
- _writePPFieldName(SerializableString, boolean) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writePPFieldName(String) - Method in class com.fasterxml.jackson.core.json.UTF8JsonGenerator
-
Specialized version of
_writeFieldName
, off-lined to keep the "fast path" as simple (and hopefully fast) as possible. - _writePPFieldName(String, boolean) - Method in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
-
Specialized version of
_writeFieldName
, off-lined to keep the "fast path" as simple (and hopefully fast) as possible. - _writer - Variable in class com.fasterxml.jackson.core.json.WriterBasedJsonGenerator
- _writeSimpleObject(Object) - Method in class com.fasterxml.jackson.core.JsonGenerator
-
Helper method to try to call appropriate write method for given untyped Object.
All Classes All Packages