Uses of Class
io.netty5.handler.codec.base64.Base64Dialect
-
Packages that use Base64Dialect Package Description io.netty5.handler.codec.base64 -
-
Uses of Base64Dialect in io.netty5.handler.codec.base64
Methods in io.netty5.handler.codec.base64 that return Base64Dialect Modifier and Type Method Description static Base64Dialect
Base64Dialect. valueOf(String name)
Returns the enum constant of this type with the specified name.static Base64Dialect[]
Base64Dialect. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty5.handler.codec.base64 with parameters of type Base64Dialect Modifier and Type Method Description static Buffer
Base64. decode(Buffer src, int off, int len, Base64Dialect dialect)
static Buffer
Base64. decode(Buffer src, int off, int len, Base64Dialect dialect, BufferAllocator allocator)
static Buffer
Base64. decode(Buffer src, Base64Dialect dialect)
static Buffer
Base64. encode(Buffer src, boolean breakLines, Base64Dialect dialect)
static Buffer
Base64. encode(Buffer src, int off, int len, boolean breakLines, Base64Dialect dialect)
static Buffer
Base64. encode(Buffer src, int off, int len, boolean breakLines, Base64Dialect dialect, BufferAllocator allocator)
static Buffer
Base64. encode(Buffer src, int off, int len, Base64Dialect dialect)
static Buffer
Base64. encode(Buffer src, Base64Dialect dialect)
Constructors in io.netty5.handler.codec.base64 with parameters of type Base64Dialect Constructor Description Base64Decoder(Base64Dialect dialect)
Base64Encoder(boolean breakLines, Base64Dialect dialect)
-