Uses of Enum
io.netty.handler.codec.base64.Base64Dialect
Packages that use Base64Dialect
Package
Description
-
Uses of Base64Dialect in io.netty.handler.codec.base64
Subclasses with type arguments of type Base64Dialect in io.netty.handler.codec.base64Methods in io.netty.handler.codec.base64 that return Base64DialectModifier and TypeMethodDescriptionstatic Base64DialectReturns 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 Base64DialectModifier and TypeMethodDescriptionstatic ByteBufBase64.decode(ByteBuf src, int off, int len, Base64Dialect dialect) static ByteBufBase64.decode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator) static ByteBufBase64.decode(ByteBuf src, Base64Dialect dialect) static ByteBufBase64.encode(ByteBuf src, boolean breakLines, Base64Dialect dialect) static ByteBufBase64.encode(ByteBuf src, boolean breakLines, Base64Dialect dialect, boolean addPadding) static ByteBufBase64.encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect) static ByteBufBase64.encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, boolean addPadding) static ByteBufBase64.encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator) static ByteBufBase64.encode(ByteBuf src, int off, int len, Base64Dialect dialect) static ByteBufBase64.encode(ByteBuf src, Base64Dialect dialect) static ByteBufBase64.encode(ByteBuf src, Base64Dialect dialect, boolean addPadding) Constructors in io.netty.handler.codec.base64 with parameters of type Base64DialectModifierConstructorDescriptionBase64Decoder(Base64Dialect dialect) Base64Encoder(boolean breakLines, Base64Dialect dialect)