Uses of Class
com.fasterxml.jackson.core.io.InputDecorator
-
Packages that use InputDecorator Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances. -
-
Uses of InputDecorator in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as InputDecorator Modifier and Type Field Description protected InputDecoratorJsonFactory. _inputDecoratorOptional helper object that may decorate input sources, to do additional processing on input during parsing.protected InputDecoratorTSFBuilder. _inputDecoratorOptional helper object that may decorate input sources, to do additional processing on input during parsing.Methods in com.fasterxml.jackson.core that return InputDecorator Modifier and Type Method Description InputDecoratorJsonFactory. getInputDecorator()Method for getting currently configured input decorator (if any; there is no default decorator).InputDecoratorTSFBuilder. inputDecorator()Methods in com.fasterxml.jackson.core with parameters of type InputDecorator Modifier and Type Method Description BTSFBuilder. inputDecorator(InputDecorator dec)JsonFactoryJsonFactory. setInputDecorator(InputDecorator d)Deprecated.Since 2.10 useTSFBuilder.inputDecorator(InputDecorator)instead
-