Uses of Class
io.netty.handler.codec.base64.Base64Dialect
-
Packages that use Base64Dialect Package Description io.netty.handler.codec.base64 -
-
Uses of Base64Dialect in io.netty.handler.codec.base64
Fields in io.netty.handler.codec.base64 declared as Base64Dialect Modifier and Type Field Description private Base64Dialect
Base64Decoder. dialect
private Base64Dialect
Base64Encoder. dialect
Methods in io.netty.handler.codec.base64 that return Base64Dialect Modifier and Type Method Description static Base64Dialect
Base64Dialect. valueOf(java.lang.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.netty.handler.codec.base64 with parameters of type Base64Dialect Modifier and Type Method Description private static byte[]
Base64. alphabet(Base64Dialect dialect)
private static boolean
Base64. breakLines(Base64Dialect dialect)
private static byte[]
Base64. decodabet(Base64Dialect dialect)
static ByteBuf
Base64. decode(ByteBuf src, int off, int len, Base64Dialect dialect)
static ByteBuf
Base64. decode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator)
static ByteBuf
Base64. decode(ByteBuf src, Base64Dialect dialect)
(package private) ByteBuf
Base64.Decoder. decode(ByteBuf src, int off, int len, ByteBufAllocator allocator, Base64Dialect dialect)
static ByteBuf
Base64. encode(ByteBuf src, boolean breakLines, Base64Dialect dialect)
static ByteBuf
Base64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect)
static ByteBuf
Base64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator)
static ByteBuf
Base64. encode(ByteBuf src, int off, int len, Base64Dialect dialect)
static ByteBuf
Base64. encode(ByteBuf src, Base64Dialect dialect)
Constructors in io.netty.handler.codec.base64 with parameters of type Base64Dialect Constructor Description Base64Decoder(Base64Dialect dialect)
Base64Encoder(boolean breakLines, Base64Dialect dialect)
-