Uses of Interface
com.aoapps.encoding.LdJson

  • Uses of LdJson in com.aoapps.encoding

    Classes in com.aoapps.encoding that implement LdJson
    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 LdJson
    Modifier and Type
    Method
    Description
    default LdJson
    LdJson.encode(MediaType contentType, char ch)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default LdJson
    LdJson.encode(MediaType contentType, char[] cbuf)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default LdJson
    LdJson.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>
    LdJson
    LdJson.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>
    LdJson
    LdJson.encode(MediaType contentType, IOSupplierE<?,Ex> content)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    LdJson.encode(MediaType contentType, CharSequence csq)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    LdJson.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.
    LdJson.encode(MediaType contentType, Object content)
    Deprecated.
    Encoding of arbitrary content types is not expected since all supported types have per-type methods.
    default LdJson
    LdJson.ldJson(char ch)
    Writes the given JSON linked data with proper encoding.
    default LdJson
    LdJson.ldJson(char[] cbuf)
    Writes the given JSON linked data with proper encoding.
    default LdJson
    LdJson.ldJson(char[] cbuf, int offset, int len)
    Writes the given JSON linked data with proper encoding.
    default <Ex extends Throwable>
    LdJson
    LdJson.ldJson(LdJsonWritable<Ex> ldJson)
    Writes the given JSON linked data with proper encoding.
    default <Ex extends Throwable>
    LdJson
    LdJson.ldJson(IOSupplierE<?,Ex> ldJson)
    Writes the given JSON linked data with proper encoding.
    default LdJson
    LdJson.ldJson(CharSequence csq)
    Writes the given JSON linked data with proper encoding.
    default LdJson
    LdJson.ldJson(CharSequence csq, int start, int end)
    Writes the given JSON linked data with proper encoding.
    default LdJson
    LdJson.ldJson(Object ldJson)
    Writes the given JSON linked data with proper encoding.