- Base16 - Class in org.apache.commons.codec.binary
- 
Provides Base16 encoding and decoding. 
- Base16() - Constructor for class org.apache.commons.codec.binary.Base16
- 
Creates a Base16 codec used for decoding and encoding. 
- Base16(boolean) - Constructor for class org.apache.commons.codec.binary.Base16
- 
Creates a Base16 codec used for decoding and encoding. 
- Base16(boolean, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base16
- 
Creates a Base16 codec used for decoding and encoding. 
- Base16InputStream - Class in org.apache.commons.codec.binary
- 
Provides Base16 encoding and decoding in a streaming fashion (unlimited size). 
- Base16InputStream(InputStream) - Constructor for class org.apache.commons.codec.binary.Base16InputStream
- 
Creates a Base16InputStream such that all data read is Base16-decoded from the original provided InputStream. 
- Base16InputStream(InputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base16InputStream
- 
Creates a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original
 provided InputStream. 
- Base16InputStream(InputStream, boolean, boolean) - Constructor for class org.apache.commons.codec.binary.Base16InputStream
- 
Creates a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original
 provided InputStream. 
- Base16InputStream(InputStream, boolean, boolean, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base16InputStream
- 
Creates a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original
 provided InputStream. 
- Base16OutputStream - Class in org.apache.commons.codec.binary
- 
Provides Hex encoding and decoding in a streaming fashion (unlimited size). 
- Base16OutputStream(OutputStream) - Constructor for class org.apache.commons.codec.binary.Base16OutputStream
- 
Creates a Base16OutputStream such that all data written is Hex-encoded to the original provided OutputStream. 
- Base16OutputStream(OutputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base16OutputStream
- 
Creates a Base16OutputStream such that all data written is either Hex-encoded or Hex-decoded to the
 original provided OutputStream. 
- Base16OutputStream(OutputStream, boolean, boolean) - Constructor for class org.apache.commons.codec.binary.Base16OutputStream
- 
Creates a Base16OutputStream such that all data written is either Hex-encoded or Hex-decoded to the
 original provided OutputStream. 
- Base16OutputStream(OutputStream, boolean, boolean, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base16OutputStream
- 
Creates a Base16OutputStream such that all data written is either Hex-encoded or Hex-decoded to the
 original provided OutputStream. 
- Base32 - Class in org.apache.commons.codec.binary
- 
Provides Base32 encoding and decoding as defined by  RFC 4648. 
- Base32() - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(boolean) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(boolean, byte) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(byte) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(int) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 codec used for decoding and encoding. 
- Base32(int, byte[], boolean) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 / Base32 Hex codec used for decoding and encoding. 
- Base32(int, byte[], boolean, byte) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 / Base32 Hex codec used for decoding and encoding. 
- Base32(int, byte[], boolean, byte, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base32
- 
Creates a Base32 / Base32 Hex codec used for decoding and encoding. 
- Base32InputStream - Class in org.apache.commons.codec.binary
- 
Provides Base32 encoding and decoding in a streaming fashion (unlimited size). 
- Base32InputStream(InputStream) - Constructor for class org.apache.commons.codec.binary.Base32InputStream
- 
Creates a Base32InputStream such that all data read is Base32-decoded from the original provided InputStream. 
- Base32InputStream(InputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base32InputStream
- 
Creates a Base32InputStream such that all data read is either Base32-encoded or Base32-decoded from the original
 provided InputStream. 
- Base32InputStream(InputStream, boolean, int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base32InputStream
- 
Creates a Base32InputStream such that all data read is either Base32-encoded or Base32-decoded from the original
 provided InputStream. 
- Base32InputStream(InputStream, boolean, int, byte[], CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base32InputStream
- 
Creates a Base32InputStream such that all data read is either Base32-encoded or Base32-decoded from the original
 provided InputStream. 
- Base32OutputStream - Class in org.apache.commons.codec.binary
- 
Provides Base32 encoding and decoding in a streaming fashion (unlimited size). 
- Base32OutputStream(OutputStream) - Constructor for class org.apache.commons.codec.binary.Base32OutputStream
- 
Creates a Base32OutputStream such that all data written is Base32-encoded to the original provided OutputStream. 
- Base32OutputStream(OutputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base32OutputStream
- 
Creates a Base32OutputStream such that all data written is either Base32-encoded or Base32-decoded to the
 original provided OutputStream. 
- Base32OutputStream(OutputStream, boolean, int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base32OutputStream
- 
Creates a Base32OutputStream such that all data written is either Base32-encoded or Base32-decoded to the
 original provided OutputStream. 
- Base32OutputStream(OutputStream, boolean, int, byte[], CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base32OutputStream
- 
Creates a Base32OutputStream such that all data written is either Base32-encoded or Base32-decoded to the
 original provided OutputStream. 
- Base64 - Class in org.apache.commons.codec.binary
- 
Provides Base64 encoding and decoding as defined by  RFC 2045. 
- Base64() - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode. 
- Base64(boolean) - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in the given URL-safe mode. 
- Base64(int) - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode. 
- Base64(int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode. 
- Base64(int, byte[], boolean) - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode. 
- Base64(int, byte[], boolean, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base64
- 
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode. 
- Base64InputStream - Class in org.apache.commons.codec.binary
- 
Provides Base64 encoding and decoding in a streaming fashion (unlimited size). 
- Base64InputStream(InputStream) - Constructor for class org.apache.commons.codec.binary.Base64InputStream
- 
Creates a Base64InputStream such that all data read is Base64-decoded from the original provided InputStream. 
- Base64InputStream(InputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base64InputStream
- 
Creates a Base64InputStream such that all data read is either Base64-encoded or Base64-decoded from the original
 provided InputStream. 
- Base64InputStream(InputStream, boolean, int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base64InputStream
- 
Creates a Base64InputStream such that all data read is either Base64-encoded or Base64-decoded from the original
 provided InputStream. 
- Base64InputStream(InputStream, boolean, int, byte[], CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base64InputStream
- 
Creates a Base64InputStream such that all data read is either Base64-encoded or Base64-decoded from the original
 provided InputStream. 
- Base64OutputStream - Class in org.apache.commons.codec.binary
- 
Provides Base64 encoding and decoding in a streaming fashion (unlimited size). 
- Base64OutputStream(OutputStream) - Constructor for class org.apache.commons.codec.binary.Base64OutputStream
- 
Creates a Base64OutputStream such that all data written is Base64-encoded to the original provided OutputStream. 
- Base64OutputStream(OutputStream, boolean) - Constructor for class org.apache.commons.codec.binary.Base64OutputStream
- 
Creates a Base64OutputStream such that all data written is either Base64-encoded or Base64-decoded to the
 original provided OutputStream. 
- Base64OutputStream(OutputStream, boolean, int, byte[]) - Constructor for class org.apache.commons.codec.binary.Base64OutputStream
- 
Creates a Base64OutputStream such that all data written is either Base64-encoded or Base64-decoded to the
 original provided OutputStream. 
- Base64OutputStream(OutputStream, boolean, int, byte[], CodecPolicy) - Constructor for class org.apache.commons.codec.binary.Base64OutputStream
- 
Creates a Base64OutputStream such that all data written is either Base64-encoded or Base64-decoded to the
 original provided OutputStream. 
- BaseNCodec - Class in org.apache.commons.codec.binary
- 
Abstract superclass for Base-N encoders and decoders. 
- BaseNCodec(int, int, int, int) - Constructor for class org.apache.commons.codec.binary.BaseNCodec
- 
Note lineLengthis rounded down to the nearest multiple of the encoded block size.
 
- BaseNCodec(int, int, int, int, byte) - Constructor for class org.apache.commons.codec.binary.BaseNCodec
- 
Note lineLengthis rounded down to the nearest multiple of the encoded block size.
 
- BaseNCodec(int, int, int, int, byte, CodecPolicy) - Constructor for class org.apache.commons.codec.binary.BaseNCodec
- 
Note lineLengthis rounded down to the nearest multiple of the encoded block size.
 
- BaseNCodecInputStream - Class in org.apache.commons.codec.binary
- 
Abstract superclass for Base-N input streams. 
- BaseNCodecInputStream(InputStream, BaseNCodec, boolean) - Constructor for class org.apache.commons.codec.binary.BaseNCodecInputStream
-  
- BaseNCodecOutputStream - Class in org.apache.commons.codec.binary
- 
Abstract superclass for Base-N output streams. 
- BaseNCodecOutputStream(OutputStream, BaseNCodec, boolean) - Constructor for class org.apache.commons.codec.binary.BaseNCodecOutputStream
- 
TODO should this be protected? 
- BCodec - Class in org.apache.commons.codec.net
- 
Identical to the Base64 encoding defined by  RFC 1521
 and allows a character set to be specified. 
- BCodec() - Constructor for class org.apache.commons.codec.net.BCodec
- 
Default constructor. 
- BCodec(Charset) - Constructor for class org.apache.commons.codec.net.BCodec
- 
Constructor which allows for the selection of a default Charset 
- BCodec(Charset, CodecPolicy) - Constructor for class org.apache.commons.codec.net.BCodec
- 
Constructor which allows for the selection of a default Charset. 
- BCodec(String) - Constructor for class org.apache.commons.codec.net.BCodec
- 
Constructor which allows for the selection of a default Charset 
- BeiderMorseEncoder - Class in org.apache.commons.codec.language.bm
- 
Encodes strings into their Beider-Morse phonetic encoding. 
- BeiderMorseEncoder() - Constructor for class org.apache.commons.codec.language.bm.BeiderMorseEncoder
-  
- BinaryCodec - Class in org.apache.commons.codec.binary
- 
Converts between byte arrays and strings of "0"s and "1"s. 
- BinaryCodec() - Constructor for class org.apache.commons.codec.binary.BinaryCodec
-  
- BinaryDecoder - Interface in org.apache.commons.codec
- 
Defines common decoding methods for byte array decoders. 
- BinaryEncoder - Interface in org.apache.commons.codec
- 
Defines common encoding methods for byte array encoders. 
- DaitchMokotoffSoundex - Class in org.apache.commons.codec.language
- 
Encodes a string into a Daitch-Mokotoff Soundex value. 
- DaitchMokotoffSoundex() - Constructor for class org.apache.commons.codec.language.DaitchMokotoffSoundex
- 
Creates a new instance with ASCII-folding enabled. 
- DaitchMokotoffSoundex(boolean) - Constructor for class org.apache.commons.codec.language.DaitchMokotoffSoundex
- 
Creates a new instance. 
- decode(byte[]) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Decodes a byte[] containing characters in the Base-N alphabet. 
- decode(Object) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Decodes an Object using the Base-N algorithm. 
- decode(String) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Decodes a String containing characters in the Base-N alphabet. 
- decode(byte[]) - Method in class org.apache.commons.codec.binary.BinaryCodec
- 
Decodes a byte array where each byte represents an ASCII '0' or '1'. 
- decode(Object) - Method in class org.apache.commons.codec.binary.BinaryCodec
- 
Decodes a byte array where each byte represents an ASCII '0' or '1'. 
- decode(byte[]) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of character bytes representing hexadecimal values into an array of bytes of those same values. 
- decode(ByteBuffer) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts a buffer of character bytes representing hexadecimal values into an array of bytes of those same values. 
- decode(Object) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts a String or an array of character bytes representing hexadecimal values into an array of bytes of those
 same values. 
- decode(byte[]) - Method in interface org.apache.commons.codec.BinaryDecoder
- 
Decodes a byte array and returns the results as a byte array. 
- decode(Object) - Method in interface org.apache.commons.codec.Decoder
- 
Decodes an "encoded" Object and returns a "decoded" Object. 
- decode(String) - Method in class org.apache.commons.codec.net.BCodec
- 
Decodes a Base64 string into its original form. 
- decode(Object) - Method in class org.apache.commons.codec.net.BCodec
- 
Decodes a Base64 object into its original form. 
- decode(byte[]) - Method in class org.apache.commons.codec.net.PercentCodec
- 
Decode bytes encoded with Percent-Encoding based on RFC 3986. 
- decode(Object) - Method in class org.apache.commons.codec.net.PercentCodec
- 
Decodes a byte[] Object, whose bytes are encoded with Percent-Encoding. 
- decode(String) - Method in class org.apache.commons.codec.net.QCodec
- 
Decodes a quoted-printable string into its original form. 
- decode(Object) - Method in class org.apache.commons.codec.net.QCodec
- 
Decodes a quoted-printable object into its original form. 
- decode(byte[]) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes an array of quoted-printable characters into an array of original bytes. 
- decode(String, Charset) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes a quoted-printable string into its original form using the specified string Charset. 
- decode(String, String) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes a quoted-printable string into its original form using the specified string Charset. 
- decode(String) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes a quoted-printable string into its original form using the default string Charset. 
- decode(Object) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes a quoted-printable object into its original form. 
- decode(byte[]) - Method in class org.apache.commons.codec.net.URLCodec
- 
Decodes an array of URL safe 7-bit characters into an array of original bytes. 
- decode(String, String) - Method in class org.apache.commons.codec.net.URLCodec
- 
Decodes a URL safe string into its original form using the specified encoding. 
- decode(String) - Method in class org.apache.commons.codec.net.URLCodec
- 
Decodes a URL safe string into its original form using the default string charset. 
- decode(Object) - Method in class org.apache.commons.codec.net.URLCodec
- 
Decodes a URL safe object into its original form. 
- decode(String) - Method in interface org.apache.commons.codec.StringDecoder
- 
Decodes a String and returns a String. 
- decodeBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Decodes Base64 data into octets. 
- decodeBase64(String) - Static method in class org.apache.commons.codec.binary.Base64
- 
Decodes a Base64 String into octets. 
- decodeHex(char[]) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of characters representing hexadecimal values into an array of bytes of those same values. 
- decodeHex(char[], byte[], int) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of characters representing hexadecimal values into an array of bytes of those same values. 
- decodeHex(String) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a String representing hexadecimal values into an array of bytes of those same values. 
- decodeInteger(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Decodes a byte64-encoded integer according to crypto standards such as W3C's XML-Signature. 
- decodeQuotedPrintable(byte[]) - Static method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Decodes an array quoted-printable characters into an array of original bytes. 
- Decoder - Interface in org.apache.commons.codec
- 
Provides the highest level of abstraction for Decoders. 
- DecoderException - Exception in org.apache.commons.codec
- 
Thrown when there is a failure condition during the decoding process. 
- DecoderException() - Constructor for exception org.apache.commons.codec.DecoderException
- 
Constructs a new exception with nullas its detail message.
 
- DecoderException(String) - Constructor for exception org.apache.commons.codec.DecoderException
- 
Constructs a new exception with the specified detail message. 
- DecoderException(String, Throwable) - Constructor for exception org.apache.commons.codec.DecoderException
- 
Constructs a new exception with the specified detail message and cause. 
- DecoderException(Throwable) - Constructor for exception org.apache.commons.codec.DecoderException
- 
Constructs a new exception with the specified cause and a detail message of (cause==null ?
 null : cause.toString())(which typically contains the class and detail message ofcause).
 
- decodeUrl(byte[]) - Static method in class org.apache.commons.codec.net.URLCodec
- 
Decodes an array of URL safe 7-bit characters into an array of original bytes. 
- DECODING_POLICY_DEFAULT - Static variable in class org.apache.commons.codec.binary.BaseNCodec
- 
The default decoding policy. 
- DEFAULT_CHARSET - Static variable in class org.apache.commons.codec.binary.Hex
- 
- DEFAULT_CHARSET_NAME - Static variable in class org.apache.commons.codec.binary.Hex
- 
- DEFAULT_SEED - Static variable in class org.apache.commons.codec.digest.MurmurHash3
- 
A default seed to use for the murmur hash algorithm. 
- difference(String, String) - Method in class org.apache.commons.codec.language.RefinedSoundex
- 
Returns the number of characters in the two encoded Strings that are the
 same. 
- difference(String, String) - Method in class org.apache.commons.codec.language.Soundex
- 
Encodes the Strings and returns the number of characters in the two encoded Strings that are the same. 
- Digest - Class in org.apache.commons.codec.cli
- 
A minimal command line to run digest over files, directories or a string 
- digest(MessageDigest, byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a byte array and returns the digest for the data. 
- digest(MessageDigest, ByteBuffer) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a ByteBuffer and returns the digest for the data 
- digest(MessageDigest, File) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digest(MessageDigest, InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through an InputStream and returns the digest for the data 
- digest(MessageDigest, Path, OpenOption...) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digest(MessageDigest, RandomAccessFile) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a RandomAccessFile using non-blocking-io (NIO) and returns the digest for the data 
- digest(byte[]) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a byte array and returns the digest for the data. 
- digest(ByteBuffer) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a ByteBuffer and returns the digest for the data 
- digest(File) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digest(InputStream) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through an InputStream and returns the digest for the data 
- digest(Path, OpenOption...) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digest(String) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a byte array and returns the digest for the data. 
- digestAsHex(byte[]) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a byte array and returns the digest for the data. 
- digestAsHex(ByteBuffer) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a ByteBuffer and returns the digest for the data 
- digestAsHex(File) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digestAsHex(InputStream) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through an InputStream and returns the digest for the data 
- digestAsHex(Path, OpenOption...) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a File and returns the digest for the data 
- digestAsHex(String) - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Reads through a byte array and returns the digest for the data. 
- DigestUtils - Class in org.apache.commons.codec.digest
- 
- DigestUtils() - Constructor for class org.apache.commons.codec.digest.DigestUtils
- 
- DigestUtils(MessageDigest) - Constructor for class org.apache.commons.codec.digest.DigestUtils
- 
- DigestUtils(String) - Constructor for class org.apache.commons.codec.digest.DigestUtils
- 
- doDecoding(byte[]) - Method in class org.apache.commons.codec.net.BCodec
-  
- doDecoding(byte[]) - Method in class org.apache.commons.codec.net.QCodec
-  
- doEncoding(byte[]) - Method in class org.apache.commons.codec.net.BCodec
-  
- doEncoding(byte[]) - Method in class org.apache.commons.codec.net.QCodec
-  
- DoubleMetaphone - Class in org.apache.commons.codec.language
- 
Encodes a string into a double metaphone value. 
- DoubleMetaphone() - Constructor for class org.apache.commons.codec.language.DoubleMetaphone
- 
Creates an instance of this DoubleMetaphone encoder 
- doubleMetaphone(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Encode a value with Double Metaphone. 
- doubleMetaphone(String, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Encode a value with Double Metaphone, optionally using the alternate encoding. 
- DoubleMetaphone.DoubleMetaphoneResult - Class in org.apache.commons.codec.language
- 
Inner class for storing results, since there is the optional alternate encoding. 
- DoubleMetaphoneResult(int) - Constructor for class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
-  
- encode(byte[]) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Encodes a byte[] containing binary data, into a byte[] containing characters in the alphabet. 
- encode(byte[], int, int) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Encodes a byte[] containing binary data, into a byte[] containing
 characters in the alphabet. 
- encode(Object) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Encodes an Object using the Base-N algorithm. 
- encode(byte[]) - Method in class org.apache.commons.codec.binary.BinaryCodec
- 
Converts an array of raw binary data into an array of ASCII 0 and 1 characters. 
- encode(Object) - Method in class org.apache.commons.codec.binary.BinaryCodec
- 
Converts an array of raw binary data into an array of ASCII 0 and 1 chars. 
- encode(byte[]) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of bytes for the characters representing the hexadecimal values of each
 byte in order. 
- encode(ByteBuffer) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts byte buffer into an array of bytes for the characters representing the hexadecimal values of each byte
 in order. 
- encode(Object) - Method in class org.apache.commons.codec.binary.Hex
- 
Converts a String or an array of bytes into an array of characters representing the hexadecimal values of each
 byte in order. 
- encode(byte[]) - Method in interface org.apache.commons.codec.BinaryEncoder
- 
Encodes a byte array and return the encoded data as a byte array. 
- encode(Object) - Method in interface org.apache.commons.codec.Encoder
- 
Encodes an "Object" and returns the encoded content as an Object. 
- encode(Object) - Method in class org.apache.commons.codec.language.AbstractCaverphone
- 
Encodes an Object using the caverphone algorithm. 
- encode(Object) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
-  
- encode(String) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
-  
- encode(String) - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Encodes a string to its phonetic representation. 
- encode(String, Languages.LanguageSet) - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Encodes an input string into an output phonetic representation, given a set of possible origin languages. 
- encode(Object) - Method in class org.apache.commons.codec.language.Caverphone
- 
Deprecated. Encodes an Object using the caverphone algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.Caverphone
- 
Deprecated. Encodes a String using the Caverphone algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.Caverphone1
- 
Encodes the given String into a Caverphone value. 
- encode(String) - Method in class org.apache.commons.codec.language.Caverphone2
- 
Encodes the given String into a Caverphone 2.0 value. 
- encode(Object) - Method in class org.apache.commons.codec.language.ColognePhonetic
-  
- encode(String) - Method in class org.apache.commons.codec.language.ColognePhonetic
-  
- encode(Object) - Method in class org.apache.commons.codec.language.DaitchMokotoffSoundex
- 
Encodes an Object using the Daitch-Mokotoff soundex algorithm without branching. 
- encode(String) - Method in class org.apache.commons.codec.language.DaitchMokotoffSoundex
- 
Encodes a String using the Daitch-Mokotoff soundex algorithm without branching. 
- encode(Object) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Encode the value using DoubleMetaphone. 
- encode(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Encode the value using DoubleMetaphone. 
- encode(Object) - Method in class org.apache.commons.codec.language.MatchRatingApproachEncoder
- 
Encodes an Object using the Match Rating Approach algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.MatchRatingApproachEncoder
- 
Encodes a String using the Match Rating Approach (MRA) algorithm. 
- encode(Object) - Method in class org.apache.commons.codec.language.Metaphone
- 
Encodes an Object using the metaphone algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.Metaphone
- 
Encodes a String using the Metaphone algorithm. 
- encode(Object) - Method in class org.apache.commons.codec.language.Nysiis
- 
Encodes an Object using the NYSIIS algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.Nysiis
- 
Encodes a String using the NYSIIS algorithm. 
- encode(Object) - Method in class org.apache.commons.codec.language.RefinedSoundex
- 
Encodes an Object using the refined soundex algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.RefinedSoundex
- 
Encodes a String using the refined soundex algorithm. 
- encode(Object) - Method in class org.apache.commons.codec.language.Soundex
- 
Encodes an Object using the soundex algorithm. 
- encode(String) - Method in class org.apache.commons.codec.language.Soundex
- 
Encodes a String using the soundex algorithm. 
- encode(String, Charset) - Method in class org.apache.commons.codec.net.BCodec
- 
Encodes a string into its Base64 form using the specified Charset. 
- encode(String, String) - Method in class org.apache.commons.codec.net.BCodec
- 
Encodes a string into its Base64 form using the specified Charset. 
- encode(String) - Method in class org.apache.commons.codec.net.BCodec
- 
Encodes a string into its Base64 form using the default Charset. 
- encode(Object) - Method in class org.apache.commons.codec.net.BCodec
- 
Encodes an object into its Base64 form using the default Charset. 
- encode(byte[]) - Method in class org.apache.commons.codec.net.PercentCodec
- 
Percent-Encoding based on RFC 3986. 
- encode(Object) - Method in class org.apache.commons.codec.net.PercentCodec
- 
Encodes an object into using the Percent-Encoding. 
- encode(String, Charset) - Method in class org.apache.commons.codec.net.QCodec
- 
Encodes a string into its quoted-printable form using the specified Charset. 
- encode(String, String) - Method in class org.apache.commons.codec.net.QCodec
- 
Encodes a string into its quoted-printable form using the specified Charset. 
- encode(String) - Method in class org.apache.commons.codec.net.QCodec
- 
Encodes a string into its quoted-printable form using the default Charset. 
- encode(Object) - Method in class org.apache.commons.codec.net.QCodec
- 
Encodes an object into its quoted-printable form using the default Charset. 
- encode(byte[]) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes an array of bytes into an array of quoted-printable 7-bit characters. 
- encode(String) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes a string into its quoted-printable form using the default string Charset. 
- encode(Object) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes an object into its quoted-printable safe form. 
- encode(String, Charset) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes a string into its quoted-printable form using the specified Charset. 
- encode(String, String) - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes a string into its quoted-printable form using the specified Charset. 
- encode(byte[]) - Method in class org.apache.commons.codec.net.URLCodec
- 
Encodes an array of bytes into an array of URL safe 7-bit characters. 
- encode(String, String) - Method in class org.apache.commons.codec.net.URLCodec
- 
Encodes a string into its URL safe form using the specified string charset. 
- encode(String) - Method in class org.apache.commons.codec.net.URLCodec
- 
Encodes a string into its URL safe form using the default string charset. 
- encode(Object) - Method in class org.apache.commons.codec.net.URLCodec
- 
Encodes an object into its URL safe form. 
- encode(String) - Method in interface org.apache.commons.codec.StringEncoder
- 
Encodes a String and returns a String. 
- encodeAsString(byte[]) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Encodes a byte[] containing binary data, into a String containing characters in the appropriate alphabet. 
- encodeBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm but does not chunk the output. 
- encodeBase64(byte[], boolean) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks. 
- encodeBase64(byte[], boolean, boolean) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks. 
- encodeBase64(byte[], boolean, boolean, int) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks. 
- encodeBase64Chunked(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm and chunks the encoded output into 76 character blocks 
- encodeBase64String(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using the base64 algorithm but does not chunk the output. 
- encodeBase64URLSafe(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. 
- encodeBase64URLSafeString(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. 
- encodeHex(byte[]) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(byte[], boolean) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(byte[], char[]) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(byte[], int, int, boolean) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(byte[], int, int, boolean, char[], int) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(ByteBuffer) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a byte buffer into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(ByteBuffer, boolean) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a byte buffer into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHex(ByteBuffer, char[]) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a byte buffer into an array of characters representing the hexadecimal values of each byte in order. 
- encodeHexString(byte[]) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into a String representing the hexadecimal values of each byte in order. 
- encodeHexString(byte[], boolean) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts an array of bytes into a String representing the hexadecimal values of each byte in order. 
- encodeHexString(ByteBuffer) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a byte buffer into a String representing the hexadecimal values of each byte in order. 
- encodeHexString(ByteBuffer, boolean) - Static method in class org.apache.commons.codec.binary.Hex
- 
Converts a byte buffer into a String representing the hexadecimal values of each byte in order. 
- encodeInteger(BigInteger) - Static method in class org.apache.commons.codec.binary.Base64
- 
Encodes to a byte64-encoded integer according to crypto standards such as W3C's XML-Signature. 
- encodeQuotedPrintable(BitSet, byte[]) - Static method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes an array of bytes into an array of quoted-printable 7-bit characters. 
- encodeQuotedPrintable(BitSet, byte[], boolean) - Static method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Encodes an array of bytes into an array of quoted-printable 7-bit characters. 
- Encoder - Interface in org.apache.commons.codec
- 
Provides the highest level of abstraction for Encoders. 
- EncoderException - Exception in org.apache.commons.codec
- 
Thrown when there is a failure condition during the encoding process. 
- EncoderException() - Constructor for exception org.apache.commons.codec.EncoderException
- 
Constructs a new exception with nullas its detail message.
 
- EncoderException(String) - Constructor for exception org.apache.commons.codec.EncoderException
- 
Constructs a new exception with the specified detail message. 
- EncoderException(String, Throwable) - Constructor for exception org.apache.commons.codec.EncoderException
- 
Constructs a new exception with the specified detail message and cause. 
- EncoderException(Throwable) - Constructor for exception org.apache.commons.codec.EncoderException
- 
Constructs a new exception with the specified cause and a detail message of (cause==null ?
 null : cause.toString())(which typically contains the class and detail message ofcause).
 
- encodeToString(byte[]) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Encodes a byte[] containing binary data, into a String containing characters in the Base-N alphabet. 
- encodeUrl(BitSet, byte[]) - Static method in class org.apache.commons.codec.net.URLCodec
- 
Encodes an array of bytes into an array of URL safe 7-bit characters. 
- end() - Method in class org.apache.commons.codec.digest.MurmurHash3.IncrementalHash32x86
- 
Generate the 32-bit hash value. 
- ensureBufferSize(int, BaseNCodec.Context) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Ensure that the buffer has room for sizebytes
 
- eof() - Method in class org.apache.commons.codec.binary.BaseNCodecOutputStream
- 
Writes EOF. 
- equals(CharSequence, CharSequence) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
 Compares two CharSequences, returning trueif they represent equal sequences of characters.
 
- ESCAPE_CHAR - Static variable in class org.apache.commons.codec.net.URLCodec
- 
Release 1.5 made this field final. 
- getAlternate() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
-  
- getAny() - Method in class org.apache.commons.codec.language.bm.Languages.LanguageSet
-  
- getAny() - Method in class org.apache.commons.codec.language.bm.Languages.SomeLanguages
-  
- getByteBufferUtf8(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a byte buffer using the UTF-8 charset, storing the result into a new byte
 array. 
- getBytesIso8859_1(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the ISO-8859-1 charset, storing the result into a new
 byte array. 
- getBytesUnchecked(String, String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the named charset, storing the result into a new byte
 array. 
- getBytesUsAscii(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the US-ASCII charset, storing the result into a new byte
 array. 
- getBytesUtf16(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the UTF-16 charset, storing the result into a new byte
 array. 
- getBytesUtf16Be(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the UTF-16BE charset, storing the result into a new byte
 array. 
- getBytesUtf16Le(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the UTF-16LE charset, storing the result into a new byte
 array. 
- getBytesUtf8(String) - Static method in class org.apache.commons.codec.binary.StringUtils
- 
Encodes the given string into a sequence of bytes using the UTF-8 charset, storing the result into a new byte
 array. 
- getCharset() - Method in class org.apache.commons.codec.binary.Hex
- 
Gets the charset. 
- getCharset() - Method in class org.apache.commons.codec.net.BCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getCharset() - Method in class org.apache.commons.codec.net.QCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getCharset() - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getCharsetName() - Method in class org.apache.commons.codec.binary.Hex
- 
Gets the charset name. 
- getChunkSeparator() - Static method in class org.apache.commons.codec.binary.BaseNCodec
- 
Gets a copy of the chunk separator per RFC 2045 section 2.1. 
- getCodecPolicy() - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Returns the decoding behavior policy. 
- getDefaultBufferSize() - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Get the default buffer size. 
- getDefaultCharset() - Method in class org.apache.commons.codec.net.BCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getDefaultCharset() - Method in class org.apache.commons.codec.net.QCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getDefaultCharset() - Method in class org.apache.commons.codec.net.QuotedPrintableCodec
- 
Gets the default Charset name used for string decoding and encoding. 
- getDefaultCharset() - Method in class org.apache.commons.codec.net.URLCodec
- 
The default charset used for string decoding and encoding. 
- getDigest(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns a MessageDigestfor the givenalgorithm.
 
- getDigest(String, MessageDigest) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns a MessageDigestfor the givenalgorithmor a default if there is a problem
 getting the algorithm.
 
- getEncodedLength(byte[]) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Calculates the amount of space needed to encode the supplied array. 
- getEncoding() - Method in class org.apache.commons.codec.net.BCodec
-  
- getEncoding() - Method in class org.apache.commons.codec.net.QCodec
-  
- getEncoding() - Method in class org.apache.commons.codec.net.URLCodec
- 
- getHmacMd5(byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- getHmacSha1(byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- getHmacSha256(byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- getHmacSha384(byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- getHmacSha512(byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- getInitializedMac(HmacAlgorithms, byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns an initialized Macfor the givenalgorithm.
 
- getInitializedMac(String, byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns an initialized Macfor the givenalgorithm.
 
- getInputStream(String) - Static method in class org.apache.commons.codec.Resources
- 
Opens the given named resource from the given class. 
- getInstance(NameType) - Static method in class org.apache.commons.codec.language.bm.Languages
-  
- getInstance(String) - Static method in class org.apache.commons.codec.language.bm.Languages
-  
- getInstance(NameType, RuleType, Languages.LanguageSet) - Static method in class org.apache.commons.codec.language.bm.Rule
- 
Gets rules for a combination of name type, rule type and languages. 
- getInstance(NameType, RuleType, String) - Static method in class org.apache.commons.codec.language.bm.Rule
- 
Gets rules for a combination of name type, rule type and a single language. 
- getInstanceMap(NameType, RuleType, Languages.LanguageSet) - Static method in class org.apache.commons.codec.language.bm.Rule
- 
Gets rules for a combination of name type, rule type and languages. 
- getInstanceMap(NameType, RuleType, String) - Static method in class org.apache.commons.codec.language.bm.Rule
- 
Gets rules for a combination of name type, rule type and a single language. 
- getLang() - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Gets the Lang language guessing rules being used. 
- getLanguages() - Method in class org.apache.commons.codec.language.bm.Languages
-  
- getLanguages() - Method in class org.apache.commons.codec.language.bm.Languages.SomeLanguages
-  
- getLanguages() - Method in class org.apache.commons.codec.language.bm.Rule.Phoneme
-  
- getLContext() - Method in class org.apache.commons.codec.language.bm.Rule
- 
Gets the left context. 
- getMaxCodeLen() - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Returns the maxCodeLen. 
- getMaxCodeLen() - Method in class org.apache.commons.codec.language.Metaphone
- 
Returns the maxCodeLen. 
- getMaxLength() - Method in class org.apache.commons.codec.language.Soundex
- 
- getMaxPhonemes() - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Gets the maximum number of phonemes the engine will calculate for a given input. 
- getMd2Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an MD2 MessageDigest. 
- getMd5Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an MD5 MessageDigest. 
- getMessageDigest() - Method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns the message digest instance. 
- getName() - Method in enum org.apache.commons.codec.digest.HmacAlgorithms
- 
Gets the algorithm name. 
- getName() - Method in enum org.apache.commons.codec.language.bm.NameType
- 
Gets the short version of the name type. 
- getName() - Method in enum org.apache.commons.codec.language.bm.RuleType
- 
Gets the rule name. 
- getNameType() - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Gets the name type currently in operation. 
- getNameType() - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Gets the NameType being used. 
- getPattern() - Method in class org.apache.commons.codec.language.bm.Rule
- 
Gets the pattern. 
- getPhoneme() - Method in class org.apache.commons.codec.language.bm.Rule
- 
Gets the phoneme. 
- getPhonemes() - Method in class org.apache.commons.codec.language.bm.Rule.Phoneme
-  
- getPhonemes() - Method in interface org.apache.commons.codec.language.bm.Rule.PhonemeExpr
-  
- getPhonemes() - Method in class org.apache.commons.codec.language.bm.Rule.PhonemeList
-  
- getPhonemeText() - Method in class org.apache.commons.codec.language.bm.Rule.Phoneme
-  
- getPrimary() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
-  
- getRContext() - Method in class org.apache.commons.codec.language.bm.Rule
- 
Gets the right context. 
- getRuleType() - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Gets the rule type currently in operation. 
- getRuleType() - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Gets the RuleType being used. 
- getSha1Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-1 digest. 
- getSha256Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-256 digest. 
- getSha384Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-384 digest. 
- getSha3_224Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA3-224 digest. 
- getSha3_256Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA3-256 digest. 
- getSha3_384Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA3-384 digest. 
- getSha3_512Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA3-512 digest. 
- getSha512_224Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-512/224 digest. 
- getSha512_256Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-512/256 digest. 
- getSha512Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Returns an SHA-512 digest. 
- getShaDigest() - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- getValue() - Method in class org.apache.commons.codec.digest.PureJavaCrc32
-  
- getValue() - Method in class org.apache.commons.codec.digest.PureJavaCrc32C
-  
- getValue() - Method in class org.apache.commons.codec.digest.XXHash32
-  
- guessLanguage(String) - Method in class org.apache.commons.codec.language.bm.Lang
- 
Guesses the language of a word. 
- guessLanguages(String) - Method in class org.apache.commons.codec.language.bm.Lang
- 
Guesses the languages of a word. 
- hash128(byte[]) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 128-bit hash from the byte array with a default seed. 
- hash128(String) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash128(byte[], int, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash128x64(byte[]) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 128-bit hash from the byte array with a seed of zero. 
- hash128x64(byte[], int, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 128-bit hash from the byte array with the given offset, length and seed. 
- hash32(byte[], int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 32-bit hash from byte array with the given length and seed. 
- hash32(byte[], int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 32-bit hash from byte array with the given length and a default seed value. 
- hash32(String) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 32-bit hash from a string with a default seed. 
- hash32(String, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 32-bit hash from a substring with a default seed value. 
- hash32(long, long) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from two longs with a default seed value. 
- hash32(long, long, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from two longs with the given seed. 
- hash32(long) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from a long with a default seed value. 
- hash32(long, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from a long with the given seed. 
- hash32(byte[]) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash32(String) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash32(byte[], int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash32(byte[], int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash32(byte[], int, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash32x86(byte[]) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from the byte array with a seed of zero. 
- hash32x86(byte[], int, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
Generates 32-bit hash from the byte array with the given offset, length and seed. 
- hash64(byte[], int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 64-bit hash from byte array of the given length and seed. 
- hash64(byte[], int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 64-bit hash from byte array with given length and a default seed value. 
- hash64(String) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 64-bit hash from a string with a default seed. 
- hash64(String, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash2
- 
Generates a 64-bit hash from a substring with a default seed value. 
- hash64(long) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash64(int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash64(short) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash64(byte[]) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash64(byte[], int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- hash64(byte[], int, int, int) - Static method in class org.apache.commons.codec.digest.MurmurHash3
- 
- Hex - Class in org.apache.commons.codec.binary
- 
Converts hexadecimal Strings. 
- Hex() - Constructor for class org.apache.commons.codec.binary.Hex
- 
- Hex(Charset) - Constructor for class org.apache.commons.codec.binary.Hex
- 
Creates a new codec with the given Charset. 
- Hex(String) - Constructor for class org.apache.commons.codec.binary.Hex
- 
Creates a new codec with the given charset name. 
- hmac(byte[]) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmac(String) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmac(ByteBuffer) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmac(InputStream) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the stream. 
- hmac(File) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the file. 
- HmacAlgorithms - Enum in org.apache.commons.codec.digest
- 
Standard  HmacUtils algorithm names from the  Java Cryptography Architecture Standard Algorithm Name
 Documentation. 
- hmacHex(byte[]) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmacHex(String) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmacHex(ByteBuffer) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the input data. 
- hmacHex(InputStream) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the stream. 
- hmacHex(File) - Method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns the digest for the file. 
- hmacMd5(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacMd5(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacMd5(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacMd5Hex(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacMd5Hex(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacMd5Hex(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1Hex(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1Hex(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha1Hex(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256Hex(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256Hex(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha256Hex(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384Hex(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384Hex(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha384Hex(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512Hex(byte[], byte[]) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512Hex(byte[], InputStream) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- hmacSha512Hex(String, String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
- HmacUtils - Class in org.apache.commons.codec.digest
- 
Simplifies common  Mac tasks. 
- HmacUtils() - Constructor for class org.apache.commons.codec.digest.HmacUtils
- 
- HmacUtils(String, byte[]) - Constructor for class org.apache.commons.codec.digest.HmacUtils
- 
Creates an instance using the provided algorithm type. 
- HmacUtils(String, String) - Constructor for class org.apache.commons.codec.digest.HmacUtils
- 
Creates an instance using the provided algorithm type. 
- HmacUtils(HmacAlgorithms, String) - Constructor for class org.apache.commons.codec.digest.HmacUtils
- 
Creates an instance using the provided algorithm type. 
- HmacUtils(HmacAlgorithms, byte[]) - Constructor for class org.apache.commons.codec.digest.HmacUtils
- 
Creates an instance using the provided algorithm type. 
- IncrementalHash32() - Constructor for class org.apache.commons.codec.digest.MurmurHash3.IncrementalHash32
- 
Deprecated. 
- IncrementalHash32x86() - Constructor for class org.apache.commons.codec.digest.MurmurHash3.IncrementalHash32x86
-  
- instance(NameType) - Static method in class org.apache.commons.codec.language.bm.Lang
- 
Gets a Lang instance for one of the supported NameTypes. 
- isArrayByteBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
- isAvailable(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Test whether the algorithm is supported. 
- isAvailable(String) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns whether this algorithm is available 
- isAvailable(HmacAlgorithms) - Static method in class org.apache.commons.codec.digest.HmacUtils
- 
Returns whether this algorithm is available 
- isBase64(byte) - Static method in class org.apache.commons.codec.binary.Base64
- 
Returns whether or not the octetis in the base 64 alphabet.
 
- isBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
- 
Tests a given byte array to see if it contains only valid characters within the Base64 alphabet. 
- isBase64(String) - Static method in class org.apache.commons.codec.binary.Base64
- 
Tests a given String to see if it contains only valid characters within the Base64 alphabet. 
- isCaverphoneEqual(String, String) - Method in class org.apache.commons.codec.language.Caverphone
- 
Deprecated. Tests if the caverphones of two strings are identical. 
- isComplete() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
-  
- isConcat() - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Discovers if multiple possible encodings are concatenated. 
- isConcat() - Method in class org.apache.commons.codec.language.bm.PhoneticEngine
- 
Gets if multiple phonetic encodings are concatenated or if just the first one is kept. 
- isDoubleMetaphoneEqual(String, String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Check if the Double Metaphone values of two Stringvalues
 are equal.
 
- isDoubleMetaphoneEqual(String, String, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Check if the Double Metaphone values of two Stringvalues
 are equal, optionally using the alternate value.
 
- isEmpty() - Method in class org.apache.commons.codec.language.bm.Languages.LanguageSet
-  
- isEmpty() - Method in class org.apache.commons.codec.language.bm.Languages.SomeLanguages
-  
- isEncodeBlanks() - Method in class org.apache.commons.codec.net.QCodec
- 
Tests if optional transformation of SPACE characters is to be used 
- isEncodeEqual(String, String) - Method in class org.apache.commons.codec.language.AbstractCaverphone
- 
Tests if the encodings of two strings are equal. 
- isEncodeEqual(String, String) - Method in class org.apache.commons.codec.language.ColognePhonetic
- 
Compares the first encoded string to the second encoded string. 
- isEncodeEquals(String, String) - Method in class org.apache.commons.codec.language.MatchRatingApproachEncoder
- 
Determines if two names are homophonous via Match Rating Approach (MRA) algorithm. 
- isInAlphabet(byte) - Method in class org.apache.commons.codec.binary.Base16
- 
Returns whether or not the octetis in the Base16 alphabet.
 
- isInAlphabet(byte) - Method in class org.apache.commons.codec.binary.Base32
- 
Returns whether or not the octetis in the Base32 alphabet.
 
- isInAlphabet(byte) - Method in class org.apache.commons.codec.binary.Base64
- 
Returns whether or not the octetis in the Base64 alphabet.
 
- isInAlphabet(byte) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Returns whether or not the octetis in the current alphabet.
 
- isInAlphabet(byte[], boolean) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Tests a given byte array to see if it contains only valid characters within the alphabet. 
- isInAlphabet(String) - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Tests a given String to see if it contains only valid characters within the alphabet. 
- isMatch(CharSequence) - Method in interface org.apache.commons.codec.language.bm.Rule.RPattern
-  
- isMetaphoneEqual(String, String) - Method in class org.apache.commons.codec.language.Metaphone
- 
Tests is the metaphones of two strings are identical. 
- ISO_8859_1 - Static variable in class org.apache.commons.codec.CharEncoding
- 
CharEncodingISO Latin Alphabet No. 
- ISO_8859_1 - Static variable in class org.apache.commons.codec.Charsets
- 
- isSingleton() - Method in class org.apache.commons.codec.language.bm.Languages.LanguageSet
-  
- isSingleton() - Method in class org.apache.commons.codec.language.bm.Languages.SomeLanguages
-  
- isStrict() - Method in class org.apache.commons.codec.language.Nysiis
- 
Indicates the strict mode for this  Nysiis encoder. 
- isStrictDecoding() - Method in class org.apache.commons.codec.binary.BaseNCodec
- 
Returns true if decoding behavior is strict. 
- isStrictDecoding() - Method in class org.apache.commons.codec.binary.BaseNCodecInputStream
- 
Returns true if decoding behavior is strict. 
- isStrictDecoding() - Method in class org.apache.commons.codec.binary.BaseNCodecOutputStream
- 
Returns true if decoding behavior is strict. 
- isStrictDecoding() - Method in class org.apache.commons.codec.net.BCodec
- 
Returns true if decoding behavior is strict. 
- isUrlSafe() - Method in class org.apache.commons.codec.binary.Base64
- 
Returns our current encode mode. 
- isWhiteSpace(byte) - Static method in class org.apache.commons.codec.binary.BaseNCodec
- 
Checks if a byte value is whitespace or not. 
- main(String[]) - Static method in class org.apache.commons.codec.cli.Digest
- 
Runs the digest algorithm in args[0]on the file inargs[1].
 
- mark(int) - Method in class org.apache.commons.codec.binary.BaseNCodecInputStream
- 
Marks the current position in this input stream. 
- markSupported() - Method in class org.apache.commons.codec.binary.BaseNCodecInputStream
- MASK_8BITS - Static variable in class org.apache.commons.codec.binary.BaseNCodec
- 
Mask used to extract 8 bits, used in decoding bytes 
- MatchRatingApproachEncoder - Class in org.apache.commons.codec.language
- 
Match Rating Approach Phonetic Algorithm Developed by Western Airlines in 1977. 
- MatchRatingApproachEncoder() - Constructor for class org.apache.commons.codec.language.MatchRatingApproachEncoder
-  
- md2(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 16 element byte[].
 
- md2(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 16 element byte[].
 
- md2(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 16 element byte[].
 
- MD2 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The MD2 message digest algorithm defined in RFC 1319. 
- md2Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 32 character hex string. 
- md2Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 32 character hex string. 
- md2Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD2 digest and returns the value as a 32 character hex string. 
- md5(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 16 element byte[].
 
- md5(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 16 element byte[].
 
- md5(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 16 element byte[].
 
- MD5 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The MD5 message digest algorithm defined in RFC 1321. 
- Md5Crypt - Class in org.apache.commons.codec.digest
- 
The libc crypt() "$1$" and Apache "$apr1$" MD5-based hash algorithm. 
- Md5Crypt() - Constructor for class org.apache.commons.codec.digest.Md5Crypt
-  
- md5Crypt(byte[]) - Static method in class org.apache.commons.codec.digest.Md5Crypt
- 
Generates a libc6 crypt() compatible "$1$" hash value. 
- md5Crypt(byte[], Random) - Static method in class org.apache.commons.codec.digest.Md5Crypt
- 
Generates a libc6 crypt() compatible "$1$" hash value. 
- md5Crypt(byte[], String) - Static method in class org.apache.commons.codec.digest.Md5Crypt
- 
Generates a libc crypt() compatible "$1$" MD5 based hash value. 
- md5Crypt(byte[], String, String) - Static method in class org.apache.commons.codec.digest.Md5Crypt
- 
Generates a libc6 crypt() "$1$" or Apache htpasswd "$apr1$" hash value. 
- md5Crypt(byte[], String, String, Random) - Static method in class org.apache.commons.codec.digest.Md5Crypt
- 
Generates a libc6 crypt() "$1$" or Apache htpasswd "$apr1$" hash value. 
- md5Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 32 character hex string. 
- md5Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 32 character hex string. 
- md5Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the MD5 digest and returns the value as a 32 character hex string. 
- merge(Languages.LanguageSet) - Method in class org.apache.commons.codec.language.bm.Languages.SomeLanguages
-  
- mergeWithLanguage(Languages.LanguageSet) - Method in class org.apache.commons.codec.language.bm.Rule.Phoneme
- 
Returns a new Phoneme with the same text but a union of its
 current language set and the given one. 
- MessageDigestAlgorithms - Class in org.apache.commons.codec.digest
- 
Standard  MessageDigest algorithm names from the  Java Cryptography Architecture Standard Algorithm Name
 Documentation. 
- Metaphone - Class in org.apache.commons.codec.language
- 
Encodes a string into a Metaphone value. 
- Metaphone() - Constructor for class org.apache.commons.codec.language.Metaphone
- 
Creates an instance of the Metaphone encoder 
- metaphone(String) - Method in class org.apache.commons.codec.language.Metaphone
- 
Find the metaphone value of a String. 
- MIME_CHUNK_SIZE - Static variable in class org.apache.commons.codec.binary.BaseNCodec
- 
MIME chunk size per RFC 2045 section 6.8. 
- MurmurHash2 - Class in org.apache.commons.codec.digest
- 
Implementation of the MurmurHash2 32-bit and 64-bit hash functions. 
- MurmurHash3 - Class in org.apache.commons.codec.digest
- 
Implementation of the MurmurHash3 32-bit and 128-bit hash functions. 
- MurmurHash3.IncrementalHash32 - Class in org.apache.commons.codec.digest
- 
- MurmurHash3.IncrementalHash32x86 - Class in org.apache.commons.codec.digest
- 
Generates 32-bit hash from input bytes. 
- setConcat(boolean) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Sets how multiple possible phonetic encodings are combined. 
- setEncodeBlanks(boolean) - Method in class org.apache.commons.codec.net.QCodec
- 
Defines whether optional transformation of SPACE characters is to be used 
- setMaxCodeLen(int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
- 
Sets the maxCodeLen. 
- setMaxCodeLen(int) - Method in class org.apache.commons.codec.language.Metaphone
- 
Sets the maxCodeLen. 
- setMaxLength(int) - Method in class org.apache.commons.codec.language.Soundex
- 
- setMaxPhonemes(int) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Sets the number of maximum of phonemes that shall be considered by the engine. 
- setNameType(NameType) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Sets the type of name. 
- setRuleType(RuleType) - Method in class org.apache.commons.codec.language.bm.BeiderMorseEncoder
- 
Sets the rule type to apply. 
- sha(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- sha(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- sha(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- sha1(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a byte[].
 
- sha1(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a byte[].
 
- sha1(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a byte[].
 
- sha1Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a hex string. 
- sha1Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a hex string. 
- sha1Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-1 digest and returns the value as a hex string. 
- sha256(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a byte[].
 
- sha256(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a byte[].
 
- sha256(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a byte[].
 
- sha256Crypt(byte[]) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc crypt() compatible "$5$" hash value with random salt. 
- sha256Crypt(byte[], String) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc6 crypt() compatible "$5$" hash value. 
- sha256Crypt(byte[], String, Random) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc6 crypt() compatible "$5$" hash value. 
- sha256Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a hex string. 
- sha256Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a hex string. 
- sha256Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-256 digest and returns the value as a hex string. 
- Sha2Crypt - Class in org.apache.commons.codec.digest
- 
SHA2-based Unix crypt implementation. 
- Sha2Crypt() - Constructor for class org.apache.commons.codec.digest.Sha2Crypt
-  
- sha384(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a byte[].
 
- sha384(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a byte[].
 
- sha384(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a byte[].
 
- sha384Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a hex string. 
- sha384Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a hex string. 
- sha384Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-384 digest and returns the value as a hex string. 
- sha3_224(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a byte[].
 
- sha3_224(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a byte[].
 
- sha3_224(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a byte[].
 
- SHA3_224 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA3-224 hash algorithm defined in the FIPS PUB 202. 
- sha3_224Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a hex string. 
- sha3_224Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a hex string. 
- sha3_224Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-224 digest and returns the value as a hex string. 
- sha3_256(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a byte[].
 
- sha3_256(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a byte[].
 
- sha3_256(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a byte[].
 
- SHA3_256 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA3-256 hash algorithm defined in the FIPS PUB 202. 
- sha3_256Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a hex string. 
- sha3_256Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a hex string. 
- sha3_256Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-256 digest and returns the value as a hex string. 
- sha3_384(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a byte[].
 
- sha3_384(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a byte[].
 
- sha3_384(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a byte[].
 
- SHA3_384 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA3-384 hash algorithm defined in the FIPS PUB 202. 
- sha3_384Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a hex string. 
- sha3_384Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a hex string. 
- sha3_384Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-384 digest and returns the value as a hex string. 
- sha3_512(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a byte[].
 
- sha3_512(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a byte[].
 
- sha3_512(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a byte[].
 
- SHA3_512 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA3-512 hash algorithm defined in the FIPS PUB 202. 
- sha3_512Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a hex string. 
- sha3_512Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a hex string. 
- sha3_512Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA3-512 digest and returns the value as a hex string. 
- sha512(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a byte[].
 
- sha512(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a byte[].
 
- sha512(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a byte[].
 
- sha512_224(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a byte[].
 
- sha512_224(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a byte[].
 
- sha512_224(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a byte[].
 
- sha512_224Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a hex string. 
- sha512_224Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a hex string. 
- sha512_224Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/224 digest and returns the value as a hex string. 
- sha512_256(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a byte[].
 
- sha512_256(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a byte[].
 
- sha512_256(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a byte[].
 
- sha512_256Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a hex string. 
- sha512_256Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a hex string. 
- sha512_256Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512/256 digest and returns the value as a hex string. 
- sha512Crypt(byte[]) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc crypt() compatible "$6$" hash value with random salt. 
- sha512Crypt(byte[], String) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc6 crypt() compatible "$6$" hash value. 
- sha512Crypt(byte[], String, Random) - Static method in class org.apache.commons.codec.digest.Sha2Crypt
- 
Generates a libc6 crypt() compatible "$6$" hash value. 
- sha512Hex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a hex string. 
- sha512Hex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a hex string. 
- sha512Hex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
Calculates the SHA-512 digest and returns the value as a hex string. 
- SHA_1 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-1 hash algorithm defined in the FIPS PUB 180-2. 
- SHA_224 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-224 hash algorithm defined in the FIPS PUB 180-3. 
- SHA_256 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-256 hash algorithm defined in the FIPS PUB 180-2. 
- SHA_384 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-384 hash algorithm defined in the FIPS PUB 180-2. 
- SHA_512 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-512 hash algorithm defined in the FIPS PUB 180-2. 
- SHA_512_224 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-512 hash algorithm defined in the FIPS PUB 180-4. 
- SHA_512_256 - Static variable in class org.apache.commons.codec.digest.MessageDigestAlgorithms
- 
The SHA-512 hash algorithm defined in the FIPS PUB 180-4. 
- shaHex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- shaHex(InputStream) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- shaHex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
- 
- SILENT_MARKER - Static variable in class org.apache.commons.codec.language.Soundex
- 
The marker character used to indicate a silent (ignored) character. 
- skip(long) - Method in class org.apache.commons.codec.binary.BaseNCodecInputStream
- soundex(String) - Method in class org.apache.commons.codec.language.DaitchMokotoffSoundex
- 
Encodes a String using the Daitch-Mokotoff soundex algorithm with branching. 
- soundex(String) - Method in class org.apache.commons.codec.language.RefinedSoundex
- 
Retrieves the Refined Soundex code for a given String object. 
- Soundex - Class in org.apache.commons.codec.language
- 
Encodes a string into a Soundex value. 
- Soundex() - Constructor for class org.apache.commons.codec.language.Soundex
- 
Creates an instance using US_ENGLISH_MAPPING 
- Soundex(char[]) - Constructor for class org.apache.commons.codec.language.Soundex
- 
Creates a soundex instance using the given mapping. 
- Soundex(String) - Constructor for class org.apache.commons.codec.language.Soundex
- 
Creates a refined soundex instance using a custom mapping. 
- Soundex(String, boolean) - Constructor for class org.apache.commons.codec.language.Soundex
- 
Creates a refined soundex instance using a custom mapping. 
- soundex(String) - Method in class org.apache.commons.codec.language.Soundex
- 
Retrieves the Soundex code for a given String object. 
- start(int) - Method in class org.apache.commons.codec.digest.MurmurHash3.IncrementalHash32x86
- 
Starts a new incremental hash. 
- StringDecoder - Interface in org.apache.commons.codec
- 
Defines common decoding methods for String decoders. 
- StringEncoder - Interface in org.apache.commons.codec
- 
Defines common encoding methods for String encoders. 
- StringEncoderComparator - Class in org.apache.commons.codec
- 
- StringEncoderComparator() - Constructor for class org.apache.commons.codec.StringEncoderComparator
- 
- StringEncoderComparator(StringEncoder) - Constructor for class org.apache.commons.codec.StringEncoderComparator
- 
Constructs a new instance with the given algorithm. 
- StringUtils - Class in org.apache.commons.codec.binary
- 
Converts String to and from bytes using the encodings required by the Java specification. 
- StringUtils() - Constructor for class org.apache.commons.codec.binary.StringUtils
-