Uses of Class
org.codehaus.jackson.io.InputDecorator
-
Packages that use InputDecorator Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonParser
) instances. -
-
Uses of InputDecorator in org.codehaus.jackson
Fields in org.codehaus.jackson declared as InputDecorator Modifier and Type Field Description protected InputDecorator
JsonFactory. _inputDecorator
Optional helper object that may decorate input sources, to do additional processing on input during parsing.Methods in org.codehaus.jackson that return InputDecorator Modifier and Type Method Description InputDecorator
JsonFactory. getInputDecorator()
Method for getting currently configured input decorator (if any; there is no default decorator).Methods in org.codehaus.jackson with parameters of type InputDecorator Modifier and Type Method Description JsonFactory
JsonFactory. setInputDecorator(InputDecorator d)
Method for overriding currently configured input decorator
-