org.apache.commons.codec |
A small set of interfaces used by
the various implementations in the sub-packages.
Definitive implementations of commonly used encoders and decoders.
Codec is currently comprised of a modest set of utilities and a
simple framework for String encoding and decoding in three categories:
Binary Encoders, Language Encoders, and Network Encoders.
Codec contains a number of commonly used language and phonetic
encoders
Codec contains network related encoders
|
Java Source File Name | Type | Comment |
BinaryDecoder.java | Interface | Defines common decoding methods for byte array decoders. |
BinaryEncoder.java | Interface | Defines common encoding methods for byte array encoders. |
BinaryEncoderAbstractTest.java | Class | |
Decoder.java | Interface | Provides the highest level of abstraction for Decoders.
This is the sister interface of
Encoder . |
DecoderException.java | Class | Thrown when a Decoder has encountered a failure condition during a decode. |
Encoder.java | Interface | Provides the highest level of abstraction for Encoders.
This is the sister interface of
Decoder . |
EncoderException.java | Class | Thrown when there is a failure condition during the encoding process. |
StringDecoder.java | Interface | Decodes a String into a String. |
StringEncoder.java | Interface | Encodes a String into a String. |
StringEncoderAbstractTest.java | Class | |
StringEncoderComparator.java | Class | Strings are comparable, and this comparator allows
you to configure it with an instance of a class
which implements StringEncoder. |
StringEncoderComparatorTest.java | Class | Test cases for the StingEncoderComparator. |