Uses of Interface
cloud.opencode.base.core.codec.Codec

Packages that use Codec
Package
Description
Codec API - Composable encoding and decoding 编解码 API - 可组合的编码与解码
  • Uses of Codec in cloud.opencode.base.core.codec

    Methods in cloud.opencode.base.core.codec that return Codec
    Modifier and Type
    Method
    Description
    default <R> Codec<I,R>
    Codec.andThen(Codec<O,R> after)
    Composes this codec with another, creating a pipeline: this encodes first, then after 将此编解码器与另一个组合,创建管道:先由此编码,再由 after 编码
    static Codec<byte[],String>
    OpenCodec.ascii85()
    Returns an ASCII85 (Base85) codec 返回 ASCII85(Base85)编解码器
    static Codec<byte[],String>
    OpenCodec.base32()
    Returns a Base32 codec (RFC 4648, with padding) 返回 Base32 编解码器(RFC 4648,带填充)
    static Codec<byte[],String>
    OpenCodec.base32NoPadding()
    Returns a Base32 codec without padding 返回无填充 Base32 编解码器
    static Codec<byte[],String>
    OpenCodec.base64()
    Returns a standard Base64 codec (RFC 4648, with padding) 返回标准 Base64 编解码器(RFC 4648,带填充)
    static Codec<byte[],String>
    OpenCodec.base64NoPadding()
    Returns a Base64 codec without padding 返回无填充 Base64 编解码器
    static Codec<byte[],String>
    OpenCodec.base64UrlSafe()
    Returns a URL-safe Base64 codec (RFC 4648, without padding) 返回 URL 安全 Base64 编解码器(RFC 4648,无填充)
    static Codec<byte[],String>
    OpenCodec.hex()
    Returns a lowercase hex codec 返回小写十六进制编解码器
    static Codec<byte[],String>
    OpenCodec.hexUpper()
    Returns an uppercase hex codec 返回大写十六进制编解码器
    OpenCodec.html()
    Returns an HTML entity codec (OWASP compliant) 返回 HTML 实体编解码器(符合 OWASP 规范)
    OpenCodec.url()
    Returns a URL codec (RFC 3986 percent-encoding) 返回 URL 编解码器(RFC 3986 百分号编码)
    Methods in cloud.opencode.base.core.codec with parameters of type Codec
    Modifier and Type
    Method
    Description
    default <R> Codec<I,R>
    Codec.andThen(Codec<O,R> after)
    Composes this codec with another, creating a pipeline: this encodes first, then after 将此编解码器与另一个组合,创建管道:先由此编码,再由 after 编码