Uses of Class
org.codehaus.jackson.format.MatchStrength
-
Packages that use MatchStrength Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonParser) instances.org.codehaus.jackson.format Package that contains interfaces needed for dynamic, pluggable format (auto)detection; as well as basic utility classes for simple format detection functionality.org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses.org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.smile Package that contains experimental implementation of "Binary-Encoded JSON-Like" data format handlers (parser, generator, factory produce both, supporting constants). -
-
Uses of MatchStrength in org.codehaus.jackson
Methods in org.codehaus.jackson that return MatchStrength Modifier and Type Method Description MatchStrengthJsonFactory. hasFormat(InputAccessor acc)protected MatchStrengthJsonFactory. hasJSONFormat(InputAccessor acc) -
Uses of MatchStrength in org.codehaus.jackson.format
Fields in org.codehaus.jackson.format declared as MatchStrength Modifier and Type Field Description protected MatchStrengthDataFormatMatcher. _matchStrengthStrength of match withDataFormatMatcher._matchprotected MatchStrengthDataFormatDetector. _minimalMatchStrength of minimal match we accept as the answer, unless better matches are found.protected MatchStrengthDataFormatDetector. _optimalMatchStrength of match we consider to be good enough to be used without checking any other formats.Methods in org.codehaus.jackson.format that return MatchStrength Modifier and Type Method Description MatchStrengthDataFormatMatcher. getMatchStrength()Method for accessing strength of the match, if any; if no match, will returnINCONCLUSIVE.static MatchStrengthMatchStrength. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MatchStrength[]MatchStrength. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.codehaus.jackson.format with parameters of type MatchStrength Modifier and Type Method Description DataFormatMatcherInputAccessor.Std. createMatcher(JsonFactory match, MatchStrength matchStrength)DataFormatDetectorDataFormatDetector. 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.DataFormatDetectorDataFormatDetector. 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 org.codehaus.jackson.format with parameters of type MatchStrength Constructor Description DataFormatMatcher(java.io.InputStream in, byte[] buffered, int bufferedLength, JsonFactory match, MatchStrength strength) -
Uses of MatchStrength in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl that return MatchStrength Modifier and Type Method Description static MatchStrengthByteSourceBootstrapper. hasJSONFormat(InputAccessor acc)Current implementation is not as thorough as other functionality (ByteSourceBootstrapper); supports UTF-8, for example. -
Uses of MatchStrength in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return MatchStrength Modifier and Type Method Description MatchStrengthMappingJsonFactory. hasFormat(InputAccessor acc)Sub-classes need to override this method (as of 1.8) -
Uses of MatchStrength in org.codehaus.jackson.smile
Methods in org.codehaus.jackson.smile that return MatchStrength Modifier and Type Method Description MatchStrengthSmileFactory. hasFormat(InputAccessor acc)Sub-classes need to override this method (as of 1.8)static MatchStrengthSmileParserBootstrapper. hasSmileFormat(InputAccessor acc)Helper
-