Package | Description |
---|---|
io.netty.handler.codec.base64 |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
static ByteBuf |
Base64.decode(ByteBuf src,
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.encode(ByteBuf src,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
boolean breakLines,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
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) |
Constructor and Description |
---|
Base64Decoder(Base64Dialect dialect) |
Base64Encoder(boolean breakLines,
Base64Dialect dialect) |
Copyright © 2008–2017 The Netty Project. All rights reserved.