Uses of Interface
com.aoapps.encoding.Json

  • Uses of Json in com.aoapps.encoding

    Classes in com.aoapps.encoding that implement Json
    Modifier and Type
    Class
    Description
    class 
    Streaming versions of media encoders.
    class 
    Streaming versions of media encoders.
    final class 
    Streaming versions of media encoders.
    final class 
    Streaming versions of media encoders.
    final class 
    Streaming versions of media encoders.
    Methods in com.aoapps.encoding that return Json
    Modifier and Type
    Method
    Description
    default Json
    Json.encode(MediaType contentType, char ch)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default Json
    Json.encode(MediaType contentType, char[] cbuf)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default Json
    Json.encode(MediaType contentType, char[] cbuf, int offset, int len)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default <Ex extends Throwable>
    Json
    Json.encode(MediaType contentType, MediaWritable<Ex> content)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default <Ex extends Throwable>
    Json
    Json.encode(MediaType contentType, IOSupplierE<?,Ex> content)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    Json.encode(MediaType contentType, CharSequence csq)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    Json.encode(MediaType contentType, CharSequence csq, int start, int end)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    Json.encode(MediaType contentType, Object content)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default Json
    Json.json(char ch)
    Writes the given JSON object graph with proper encoding.
    default Json
    Json.json(char[] cbuf)
    Writes the given JSON object graph with proper encoding.
    default Json
    Json.json(char[] cbuf, int offset, int len)
    Writes the given JSON object graph with proper encoding.
    default <Ex extends Throwable>
    Json
    Json.json(JsonWritable<Ex> json)
    Writes the given JSON object graph with proper encoding.
    default <Ex extends Throwable>
    Json
    Json.json(IOSupplierE<?,Ex> json)
    Writes the given JSON object graph with proper encoding.
    default Json
    Json.json(CharSequence csq)
    Writes the given JSON object graph with proper encoding.
    default Json
    Json.json(CharSequence csq, int start, int end)
    Writes the given JSON object graph with proper encoding.
    default Json
    Json.json(Object json)
    Writes the given JSON object graph with proper encoding.