软件包 | 描述 |
---|---|
io.netty.handler.codec.base64 |
Modifier and Type | Method and Description |
---|---|
static Base64Dialect |
Base64Dialect.valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static Base64Dialect[] |
Base64Dialect.values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
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–2018 The Netty Project. All rights reserved.