Uses of Interface
com.aoapps.encoding.Mysql

  • Uses of Mysql in com.aoapps.encoding

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