Uses of Class
com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Packages that use JSONWriter Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.api com.fasterxml.jackson.jr.ob.impl -
-
Uses of JSONWriter in com.fasterxml.jackson.jr.ob
Fields in com.fasterxml.jackson.jr.ob declared as JSONWriter Modifier and Type Field Description protected JSONWriter
JSON. _writer
Blueprint instance of the writer to use for writing JSON given simple Objects.protected JSONWriter
JSON.Builder. _writer
Methods in com.fasterxml.jackson.jr.ob that return JSONWriter Modifier and Type Method Description protected JSONWriter
JSON. _defaultWriter()
protected JSONWriter
JSON. _writerForOperation(com.fasterxml.jackson.core.JsonGenerator gen)
JSONWriter
JSON.Builder. jsonWriter()
Methods in com.fasterxml.jackson.jr.ob with parameters of type JSONWriter Modifier and Type Method Description protected JSON
JSON. _with(int features, com.fasterxml.jackson.core.JsonFactory jsonF, com.fasterxml.jackson.core.TreeCodec trees, JSONReader reader, JSONWriter writer, com.fasterxml.jackson.core.PrettyPrinter pp)
JSON.Builder
JSON.Builder. jsonWriter(JSONWriter w)
JSON
JSON. with(JSONWriter w)
Deprecated.Since 2.11 should try using builder (seeJSON.builder()
and create properly configured instanceConstructors in com.fasterxml.jackson.jr.ob with parameters of type JSONWriter Constructor Description JSON(JSON base, int features, com.fasterxml.jackson.core.JsonFactory jsonF, com.fasterxml.jackson.core.TreeCodec trees, JSONReader r, JSONWriter w, com.fasterxml.jackson.core.PrettyPrinter pp)
-
Uses of JSONWriter in com.fasterxml.jackson.jr.ob.api
Methods in com.fasterxml.jackson.jr.ob.api with parameters of type JSONWriter Modifier and Type Method Description ValueWriter
ReaderWriterProvider. findValueWriter(JSONWriter writeContext, java.lang.Class<?> type)
ValueWriter
ReaderWriterProvider.Pair. findValueWriter(JSONWriter ctxt, java.lang.Class<?> type)
ValueWriter
ReaderWriterModifier. modifyValueWriter(JSONWriter writeContext, java.lang.Class<?> type, ValueWriter defaultWriter)
Method called afterValueWriter
to use has been constructed, but before it is to be used for the first time.ValueWriter
ReaderWriterModifier.Pair. modifyValueWriter(JSONWriter ctxt, java.lang.Class<?> type, ValueWriter defaultWriter)
ValueWriter
ReaderWriterModifier. overrideStandardValueWriter(JSONWriter writeContext, java.lang.Class<?> type, int stdTypeId)
Method called instead ofReaderWriterModifier.modifyValueWriter(com.fasterxml.jackson.jr.ob.impl.JSONWriter, java.lang.Class<?>, com.fasterxml.jackson.jr.ob.api.ValueWriter)
for set of non-POJO "standard" JDK types that do not have matchingValueWriter
and are normally directly serialized byJSONWriter
itself.ValueWriter
ReaderWriterModifier.Pair. overrideStandardValueWriter(JSONWriter ctxt, java.lang.Class<?> type, int stdTypeId)
POJODefinition
ReaderWriterModifier.Pair. pojoDefinitionForSerialization(JSONWriter ctxt, java.lang.Class<?> pojoType)
POJODefinition
ReaderWriterModifier. pojoDefinitionForSerialization(JSONWriter writeContext, java.lang.Class<?> pojoType)
void
ValueWriter. writeValue(JSONWriter context, com.fasterxml.jackson.core.JsonGenerator g, java.lang.Object value)
-
Uses of JSONWriter in com.fasterxml.jackson.jr.ob.impl
Fields in com.fasterxml.jackson.jr.ob.impl declared as JSONWriter Modifier and Type Field Description protected JSONWriter
ValueWriterLocator. _writeContext
Methods in com.fasterxml.jackson.jr.ob.impl that return JSONWriter Modifier and Type Method Description JSONWriter
JSONWriter. perOperationInstance(int features, ValueWriterLocator loc, com.fasterxml.jackson.core.TreeCodec tc, com.fasterxml.jackson.core.JsonGenerator g)
JSONWriter
JSONWriter. withCacheCheck(int features)
Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type JSONWriter Modifier and Type Method Description ValueWriterLocator
ValueWriterLocator. perOperationInstance(JSONWriter w, int features)
POJODefinition
BeanPropertyIntrospector. pojoDefinitionForSerialization(JSONWriter w, java.lang.Class<?> pojoType)
void
BeanWriter. writeValue(JSONWriter context, com.fasterxml.jackson.core.JsonGenerator g, java.lang.Object value)
Constructors in com.fasterxml.jackson.jr.ob.impl with parameters of type JSONWriter Constructor Description JSONWriter(JSONWriter base, int features, ValueWriterLocator loc, com.fasterxml.jackson.core.TreeCodec tc, com.fasterxml.jackson.core.JsonGenerator g)
Constructor for non-blueprint instances.ValueWriterLocator(ValueWriterLocator base, int features, JSONWriter w)
-