|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EncoderException | |
org.apache.commons.codec | A small set of interfaces used by the various implementations in the sub-packages. |
org.apache.commons.codec.binary | Base64, Binary, and Hexadecimal String encoding and decoding. |
org.apache.commons.codec.language | Language and phonetic encoders. |
org.apache.commons.codec.net | Network related encoding and decoding. |
Uses of EncoderException in org.apache.commons.codec |
Methods in org.apache.commons.codec that throw EncoderException | |
byte[] |
BinaryEncoder.encode(byte[] pArray)
Encodes a byte array and return the encoded data as a byte array. |
java.lang.Object |
Encoder.encode(java.lang.Object pObject)
Encodes an "Object" and returns the encoded content as an Object. |
java.lang.String |
StringEncoder.encode(java.lang.String pString)
Encodes a String and returns a String. |
Uses of EncoderException in org.apache.commons.codec.binary |
Methods in org.apache.commons.codec.binary that throw EncoderException | |
java.lang.Object |
Base64.encode(java.lang.Object pObject)
Encodes an Object using the base64 algorithm. |
java.lang.Object |
BinaryCodec.encode(java.lang.Object raw)
Converts an array of raw binary data into an array of ascii 0 and 1 chars. |
java.lang.Object |
Hex.encode(java.lang.Object object)
Converts a String or an array of bytes into an array of characters representing the hexidecimal values of each byte in order. |
Uses of EncoderException in org.apache.commons.codec.language |
Methods in org.apache.commons.codec.language that throw EncoderException | |
java.lang.Object |
DoubleMetaphone.encode(java.lang.Object obj)
Encode the value using DoubleMetaphone. |
java.lang.Object |
Metaphone.encode(java.lang.Object pObject)
Encodes an Object using the metaphone algorithm. |
int |
RefinedSoundex.difference(java.lang.String s1,
java.lang.String s2)
Returns the number of characters in the two encoded Strings that are the same. |
java.lang.Object |
RefinedSoundex.encode(java.lang.Object pObject)
Encodes an Object using the refined soundex algorithm. |
int |
Soundex.difference(java.lang.String s1,
java.lang.String s2)
Encodes the Strings and returns the number of characters in the two encoded Strings that are the same. |
java.lang.Object |
Soundex.encode(java.lang.Object pObject)
Encodes an Object using the soundex algorithm. |
(package private) static int |
SoundexUtils.difference(StringEncoder encoder,
java.lang.String s1,
java.lang.String s2)
Encodes the Strings and returns the number of characters in the two encoded Strings that are the same. |
Uses of EncoderException in org.apache.commons.codec.net |
Methods in org.apache.commons.codec.net that throw EncoderException | |
protected byte[] |
BCodec.doEncoding(byte[] bytes)
|
java.lang.String |
BCodec.encode(java.lang.String value,
java.lang.String charset)
Encodes a string into its Base64 form using the specified charset. |
java.lang.String |
BCodec.encode(java.lang.String value)
Encodes a string into its Base64 form using the default charset. |
java.lang.Object |
BCodec.encode(java.lang.Object value)
Encodes an object into its Base64 form using the default charset. |
protected java.lang.String |
RFC1522Codec.encodeText(java.lang.String text,
java.lang.String charset)
Applies an RFC 1522 compliant encoding scheme to the given string of text with the given charset. |
protected abstract byte[] |
RFC1522Codec.doEncoding(byte[] bytes)
Encodes an array of bytes using the defined encoding scheme |
protected byte[] |
QCodec.doEncoding(byte[] bytes)
|
java.lang.String |
QCodec.encode(java.lang.String pString,
java.lang.String charset)
Encodes a string into its quoted-printable form using the specified charset. |
java.lang.String |
QCodec.encode(java.lang.String pString)
Encodes a string into its quoted-printable form using the default charset. |
java.lang.Object |
QCodec.encode(java.lang.Object pObject)
Encodes an object into its quoted-printable form using the default charset. |
java.lang.String |
QuotedPrintableCodec.encode(java.lang.String pString)
Encodes a string into its quoted-printable form using the default string charset. |
java.lang.Object |
QuotedPrintableCodec.encode(java.lang.Object pObject)
Encodes an object into its quoted-printable safe form. |
java.lang.String |
URLCodec.encode(java.lang.String pString)
Encodes a string into its URL safe form using the default string charset. |
java.lang.Object |
URLCodec.encode(java.lang.Object pObject)
Encodes an object into its URL safe form. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |