|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Codec | |
|---|---|
| com.buck.common.codec | Defines codecs, decoders, and encoders, for translating between binary content and encoded bytes. |
| com.buck.common.codec.spi | Service-provider classes for the com.buck.common.codec package. |
| Uses of Codec in com.buck.common.codec |
|---|
| Subclasses of Codec in com.buck.common.codec | |
|---|---|
class |
Base16
Encodes and decodes data using the Base16 encoding. |
class |
Base32
Codec for RFC 4648 Base32. |
class |
Base32Hex
Codec for RFC 4648 Base32 Encoding with Extended Hex Alphabet This implementation does not encode/decode streaming data. |
class |
Base64
Codec for RFC 4648 Base64. |
class |
Base64URL
Codec for RFC 4648 Base64 URL Safe. |
class |
PercentEncoded
Codec for the percent-encoded encoding scheme. |
class |
QuotedPrintable
Codec for the quoted-printable encoding scheme. |
class |
URLEncoded
Codec for the www-form-urlencoded encoding scheme. |
| Methods in com.buck.common.codec that return Codec | |
|---|---|
Codec |
CodecEncoder.codec()
Returns the codec that created this encoder. |
Codec |
CodecDecoder.codec()
Returns the codec that created this decoder. |
Codec |
FastCodecProvider.codecForName(String codecName)
|
static Codec |
Codec.forName(String codecName)
Returns a codec object for the named codec. |
| Methods in com.buck.common.codec that return types with arguments of type Codec | |
|---|---|
static SortedMap<String,Codec> |
Codec.availableCodecs()
Constructs a sorted map from canonical codec names to codec objects. |
Iterator<Codec> |
FastCodecProvider.codecs()
|
| Methods in com.buck.common.codec with parameters of type Codec | |
|---|---|
int |
Codec.compareTo(Codec that)
Compares this codec to another. |
| Constructors in com.buck.common.codec with parameters of type Codec | |
|---|---|
CodecDecoder(Codec codec)
Initializes a new decoder. |
|
CodecEncoder(Codec codec)
Initializes a new encoder. |
|
UUIDCoder(Codec codec)
Constructs a codec to encode UUID object. |
|
| Constructor parameters in com.buck.common.codec with type arguments of type Codec | |
|---|---|
FastCodecProvider(String pp,
Map<String,String> am,
Map<String,String> cm,
Map<String,Codec> c)
|
|
| Uses of Codec in com.buck.common.codec.spi |
|---|
| Methods in com.buck.common.codec.spi that return Codec | |
|---|---|
abstract Codec |
CodecProvider.codecForName(String codecName)
Retrieves a codec for the given codec name. |
| Methods in com.buck.common.codec.spi that return types with arguments of type Codec | |
|---|---|
abstract Iterator<Codec> |
CodecProvider.codecs()
Creates an iterator that iterates over the codecs supported by this provider. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||