Jcs instead.@Deprecated public final class JsonCanonicalizer extends Object
This class has been superseded by Jcs and remains only for backward
compatibility. All methods in this class delegate directly to their
equivalents in Jcs.
| Constructor and Description |
|---|
JsonCanonicalizer()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
canonize(jakarta.json.JsonValue value)
Deprecated.
|
static void |
canonize(jakarta.json.JsonValue value,
Writer writer)
Deprecated.
|
static void |
canonizeArray(jakarta.json.JsonArray value,
Writer writer)
Deprecated.
|
static void |
canonizeNumber(jakarta.json.JsonNumber number,
Writer writer)
Deprecated.
|
static String |
escape(String value)
Deprecated.
Use
Jcs.escape(String). |
@Deprecated public static final String canonize(jakarta.json.JsonValue value)
Jcs.canonize(JsonValue).value - the JSON value to canonicalize@Deprecated public static final void canonize(jakarta.json.JsonValue value, Writer writer) throws IOException
Jcs.canonize(JsonValue, Writer).value - the JSON value to canonicalizewriter - the writer to output the canonicalized JSONIOException - if an I/O error occurs while writing@Deprecated public static final void canonizeNumber(jakarta.json.JsonNumber number, Writer writer) throws IOException
Jcs.canonizeNumber(JsonNumber).number - the JSON number to canonicalizewriter - the writer to output the canonicalized representationIOException - if an I/O error occurs while writing@Deprecated public static final void canonizeArray(jakarta.json.JsonArray value, Writer writer) throws IOException
Jcs.canonizeArray(JsonArray, Writer).value - the JSON array to canonicalizewriter - the writer to output the canonicalized JSONIOException - if an I/O error occurs while writing@Deprecated public static final String escape(String value)
Jcs.escape(String).value - the property name to escapeCopyright © 2020–2025. All rights reserved.