Uses of Interface
com.aoapps.encoding.Xhtml

  • Uses of Xhtml in com.aoapps.encoding

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