Uses of Enum Class
com.fasterxml.jackson.core.format.MatchStrength
Packages that use MatchStrength
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Package that contains interfaces needed for dynamic, pluggable
format (auto)detection; as well as basic utility classes for
simple format detection functionality.
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode), as well as
writing Java Objects and trees as JSON.Contains implementation classes of deserialization part of
data binding.
-
Uses of MatchStrength in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return MatchStrengthModifier and TypeMethodDescriptionJsonFactory.hasFormat(InputAccessor acc) protected MatchStrengthJsonFactory.hasJSONFormat(InputAccessor acc) -
Uses of MatchStrength in com.fasterxml.jackson.core.format
Fields in com.fasterxml.jackson.core.format declared as MatchStrengthModifier and TypeFieldDescriptionprotected final MatchStrengthDataFormatMatcher._matchStrengthStrength of match withDataFormatMatcher._matchprotected final MatchStrengthDataFormatDetector._minimalMatchStrength of minimal match we accept as the answer, unless better matches are found.protected final MatchStrengthDataFormatDetector._optimalMatchStrength of match we consider to be good enough to be used without checking any other formats.Methods in com.fasterxml.jackson.core.format that return MatchStrengthModifier and TypeMethodDescriptionDataFormatMatcher.getMatchStrength()Method for accessing strength of the match, if any; if no match, will returnINCONCLUSIVE.static MatchStrengthReturns the enum constant of this class with the specified name.static MatchStrength[]MatchStrength.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.core.format with parameters of type MatchStrengthModifier and TypeMethodDescriptionInputAccessor.Std.createMatcher(JsonFactory match, MatchStrength matchStrength) DataFormatDetector.withMinimalMatch(MatchStrength minMatch) 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.DataFormatDetector.withOptimalMatch(MatchStrength optMatch) 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).Constructors in com.fasterxml.jackson.core.format with parameters of type MatchStrengthModifierConstructorDescriptionprotectedDataFormatMatcher(InputStream in, byte[] buffered, int bufferedStart, int bufferedLength, JsonFactory match, MatchStrength strength) -
Uses of MatchStrength in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return MatchStrengthModifier and TypeMethodDescriptionstatic MatchStrengthByteSourceJsonBootstrapper.hasJSONFormat(InputAccessor acc) Current implementation is not as thorough as other functionality (ByteSourceJsonBootstrapper); supports UTF-8, for example. -
Uses of MatchStrength in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return MatchStrengthModifier and TypeMethodDescriptionMappingJsonFactory.hasFormat(InputAccessor acc) Sub-classes need to override this method -
Uses of MatchStrength in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as MatchStrengthModifier and TypeFieldDescriptionprotected final MatchStrengthDataFormatReaders.Match._matchStrengthStrength of match withDataFormatReaders.Match._matchprotected final MatchStrengthDataFormatReaders._minimalMatchStrength of minimal match we accept as the answer, unless better matches are found.protected final MatchStrengthDataFormatReaders._optimalMatchStrength of match we consider to be good enough to be used without checking any other formats.Methods in com.fasterxml.jackson.databind.deser that return MatchStrengthModifier and TypeMethodDescriptionDataFormatReaders.Match.getMatchStrength()Method for accessing strength of the match, if any; if no match, will returnINCONCLUSIVE.Methods in com.fasterxml.jackson.databind.deser with parameters of type MatchStrengthModifier and TypeMethodDescriptionDataFormatReaders.AccessorForReader.createMatcher(ObjectReader match, MatchStrength matchStrength) DataFormatReaders.withMinimalMatch(MatchStrength minMatch) DataFormatReaders.withOptimalMatch(MatchStrength optMatch) Constructors in com.fasterxml.jackson.databind.deser with parameters of type MatchStrengthModifierConstructorDescriptionprotectedMatch(InputStream in, byte[] buffered, int bufferedStart, int bufferedLength, ObjectReader match, MatchStrength strength)