Uses of Class
org.apache.commons.codec.EncoderException
| Package | Description |
|---|---|
| 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 Modifier and Type Method Description byte[]BinaryEncoder. encode(byte[] pArray)Encodes a byte array and return the encoded data as a byte array.ObjectEncoder. encode(Object pObject)Encodes an "Object" and returns the encoded content as an Object.StringStringEncoder. encode(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 Modifier and Type Method Description ObjectBase64. encode(Object pObject)Encodes an Object using the base64 algorithm.ObjectBinaryCodec. encode(Object raw)Converts an array of raw binary data into an array of ascii 0 and 1 chars.ObjectHex. encode(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 Modifier and Type Method Description intRefinedSoundex. difference(String s1, String s2)Returns the number of characters in the two encoded Strings that are the same.intSoundex. difference(String s1, String s2)Encodes the Strings and returns the number of characters in the two encoded Strings that are the same.ObjectDoubleMetaphone. encode(Object obj)Encode the value using DoubleMetaphone.ObjectMetaphone. encode(Object pObject)Encodes an Object using the metaphone algorithm.ObjectRefinedSoundex. encode(Object pObject)Encodes an Object using the refined soundex algorithm.ObjectSoundex. encode(Object pObject)Encodes an Object using the soundex algorithm. -
Uses of EncoderException in org.apache.commons.codec.net
Methods in org.apache.commons.codec.net that throw EncoderException Modifier and Type Method Description protected byte[]BCodec. doEncoding(byte[] bytes)protected byte[]QCodec. doEncoding(byte[] bytes)ObjectBCodec. encode(Object value)Encodes an object into its Base64 form using the default charset.StringBCodec. encode(String value)Encodes a string into its Base64 form using the default charset.StringBCodec. encode(String value, String charset)Encodes a string into its Base64 form using the specified charset.ObjectQCodec. encode(Object pObject)Encodes an object into its quoted-printable form using the default charset.StringQCodec. encode(String pString)Encodes a string into its quoted-printable form using the default charset.StringQCodec. encode(String pString, String charset)Encodes a string into its quoted-printable form using the specified charset.ObjectQuotedPrintableCodec. encode(Object pObject)Encodes an object into its quoted-printable safe form.StringQuotedPrintableCodec. encode(String pString)Encodes a string into its quoted-printable form using the default string charset.ObjectURLCodec. encode(Object pObject)Encodes an object into its URL safe form.StringURLCodec. encode(String pString)Encodes a string into its URL safe form using the default string charset.