<T> T |
Jsonb.fromJson(java.io.InputStream stream,
java.lang.Class<T> type) |
Reads in a JSON data from the specified InputStream and return the
resulting content tree.
|
<T> T |
Jsonb.fromJson(java.io.InputStream stream,
java.lang.reflect.Type runtimeType) |
Reads in a JSON data from the specified InputStream and return the
resulting content tree.
|
<T> T |
Jsonb.fromJson(java.io.Reader reader,
java.lang.Class<T> type) |
Reads in a JSON data from the specified Reader and return the
resulting content tree.
|
<T> T |
Jsonb.fromJson(java.io.Reader reader,
java.lang.reflect.Type runtimeType) |
Reads in a JSON data from the specified Reader and return the
resulting content tree.
|
<T> T |
Jsonb.fromJson(java.lang.String str,
java.lang.Class<T> type) |
Reads in a JSON data from the specified string and return the resulting
content tree.
|
<T> T |
Jsonb.fromJson(java.lang.String str,
java.lang.reflect.Type runtimeType) |
Reads in a JSON data from the specified string and return the resulting
content tree.
|
java.lang.String |
Jsonb.toJson(java.lang.Object object) |
Writes the Java object tree with root object object to a String
instance as JSON.
|
void |
Jsonb.toJson(java.lang.Object object,
java.io.OutputStream stream) |
Writes the object content tree into output stream.
|
void |
Jsonb.toJson(java.lang.Object object,
java.io.Writer writer) |
Writes the object content tree into a Writer character stream.
|
java.lang.String |
Jsonb.toJson(java.lang.Object object,
java.lang.reflect.Type runtimeType) |
Writes the Java object tree with root object object to a String
instance as JSON.
|
void |
Jsonb.toJson(java.lang.Object object,
java.lang.reflect.Type runtimeType,
java.io.OutputStream stream) |
Writes the object content tree into output stream.
|
void |
Jsonb.toJson(java.lang.Object object,
java.lang.reflect.Type runtimeType,
java.io.Writer writer) |
Writes the object content tree into a Writer character stream.
|