Uses of Class
com.fasterxml.jackson.core.io.ContentReference
-
Packages that use ContentReference Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.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.io com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses. -
-
Uses of ContentReference in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as ContentReference Modifier and Type Field Description protected ContentReference
JsonLocation. _contentReference
Reference to input source; never null (but may be that ofunknown()
).Methods in com.fasterxml.jackson.core that return ContentReference Modifier and Type Method Description protected ContentReference
JsonFactory. _createContentReference(java.lang.Object contentAccessor)
Overridable factory method for constructingContentReference
to pass to parser or generator being created; used in cases where no offset or length is applicable (either irrelevant, or full contents assumed).protected ContentReference
JsonFactory. _createContentReference(java.lang.Object contentAccessor, int offset, int length)
Overridable factory method for constructingContentReference
to pass to parser or generator being created; used in cases where content is available in a static buffer with relevant offset and length (mostly when reading frombyte[]
,char[]
orString
).protected static ContentReference
JsonLocation. _wrap(java.lang.Object srcRef)
ContentReference
JsonLocation. contentReference()
Accessor for information about the original input source content is being read from.Methods in com.fasterxml.jackson.core with parameters of type ContentReference Modifier and Type Method Description protected IOContext
JsonFactory. _createContext(ContentReference contentRef, boolean resourceManaged)
Overridable factory method that actually instantiates desired context object.JsonLocation
JsonStreamContext. startLocation(ContentReference srcRef)
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.Constructors in com.fasterxml.jackson.core with parameters of type ContentReference Constructor Description JsonLocation(ContentReference contentRef, long totalChars, int lineNr, int colNr)
JsonLocation(ContentReference contentRef, long totalBytes, long totalChars, int lineNr, int columnNr)
-
Uses of ContentReference in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return ContentReference Modifier and Type Method Description protected ContentReference
ParserBase. _contentReference()
Helper method used to encapsulate logic of including (or not) of "content reference" when constructingJsonLocation
instances. -
Uses of ContentReference in com.fasterxml.jackson.core.io
Fields in com.fasterxml.jackson.core.io declared as ContentReference Modifier and Type Field Description protected ContentReference
IOContext. _contentReference
Reference to the source object, which can be used for displaying location informationprotected static ContentReference
ContentReference. UNKNOWN_CONTENT
Constant that may be used when source/target content is not known (or not exposed).Methods in com.fasterxml.jackson.core.io that return ContentReference Modifier and Type Method Description static ContentReference
ContentReference. construct(boolean isContentTextual, java.lang.Object rawContent)
static ContentReference
ContentReference. construct(boolean isContentTextual, java.lang.Object rawContent, int offset, int length)
ContentReference
IOContext. contentReference()
Accessor for getting (some) information about input source, mostly usable for error reporting purposes.static ContentReference
ContentReference. rawReference(boolean isContentTextual, java.lang.Object rawContent)
Factory method for legacy code to use for constructing instances to content about which only minimal amount of information is available.static ContentReference
ContentReference. rawReference(java.lang.Object rawContent)
static ContentReference
ContentReference. unknown()
Accessor for getting a placeholder for cases where actual content is not known (or is not something that system wants to expose).Constructors in com.fasterxml.jackson.core.io with parameters of type ContentReference Constructor Description IOContext(StreamReadConstraints src, BufferRecycler br, ContentReference contentRef, boolean managedResource)
Main constructor to use.IOContext(BufferRecycler br, ContentReference contentRef, boolean managedResource)
Deprecated. -
Uses of ContentReference in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json with parameters of type ContentReference Modifier and Type Method Description JsonLocation
JsonReadContext. startLocation(ContentReference srcRef)
-