Uses of Interface
com.aoapps.encoding.Psql

  • Uses of Psql in com.aoapps.encoding

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