Uses of Interface
org.apache.jackrabbit.oak.commons.json.JsopWriter
-
Packages that use JsopWriter Package Description org.apache.jackrabbit.oak.commons.json org.apache.jackrabbit.oak.json org.apache.jackrabbit.oak.plugins.document.bundlor -
-
Uses of JsopWriter in org.apache.jackrabbit.oak.commons.json
Classes in org.apache.jackrabbit.oak.commons.json that implement JsopWriter Modifier and Type Class Description class
JsopBuilder
A builder for Json and Jsop strings.class
JsopStream
A fast Jsop writer / reader.Methods in org.apache.jackrabbit.oak.commons.json that return JsopWriter Modifier and Type Method Description JsopWriter
JsopWriter. append(JsopWriter diff)
Append all entries of the given writer.JsopWriter
JsopWriter. array()
Append '['.JsopWriter
JsopWriter. encodedValue(String raw)
Append an already encoded value.JsopWriter
JsopWriter. endArray()
Append ']'.JsopWriter
JsopWriter. endObject()
Append '}'.JsopWriter
JsopWriter. key(String key)
Append the key (in quotes) plus a colon.JsopWriter
JsopWriter. newline()
Append a newline character.JsopWriter
JsopWriter. object()
Append '{'.JsopWriter
JsopWriter. tag(char tag)
Append a Jsop tag character.JsopWriter
JsopWriter. value(boolean b)
Append the boolean value 'true' or 'false'.JsopWriter
JsopWriter. value(long x)
Append a number.JsopWriter
JsopWriter. value(String value)
Append a string or null.Methods in org.apache.jackrabbit.oak.commons.json with parameters of type JsopWriter Modifier and Type Method Description JsopBuilder
JsopBuilder. append(JsopWriter buffer)
Append all entries of the given buffer.JsopStream
JsopStream. append(JsopWriter w)
JsopWriter
JsopWriter. append(JsopWriter diff)
Append all entries of the given writer. -
Uses of JsopWriter in org.apache.jackrabbit.oak.json
Constructors in org.apache.jackrabbit.oak.json with parameters of type JsopWriter Constructor Description JsonSerializer(JsopWriter json, int depth, long offset, int maxChildNodes, String filter, BlobSerializer blobs)
JsonSerializer(JsopWriter json, int depth, long offset, int maxChildNodes, String filter, BlobSerializer blobs, boolean catchExceptions)
JsonSerializer(JsopWriter json, String filter, BlobSerializer blobs)
JsonSerializer(JsopWriter json, BlobSerializer blobs)
-
Uses of JsopWriter in org.apache.jackrabbit.oak.plugins.document.bundlor
Methods in org.apache.jackrabbit.oak.plugins.document.bundlor with parameters of type JsopWriter Modifier and Type Method Description boolean
BundledDocumentDiffer. diff(AbstractDocumentNodeState from, AbstractDocumentNodeState to, JsopWriter w)
Performs diff for bundled nodes.
-