Uses of Interface
com.aoapps.encoding.Sh

  • Uses of Sh in com.aoapps.encoding

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