A B C D E F G H I L M O P R S T U V W

A

alternate - Variable in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
append(char) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
append(char, char) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
append(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
append(String, String) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
appendAlternate(char) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
appendAlternate(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
appendPrimary(char) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
appendPrimary(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 

B

BASELENGTH - Static variable in class org.apache.commons.codec.binary.Base64
The bsae length
Base64 - class org.apache.commons.codec.binary.Base64.
Provides encode/decode for RFC 2045 Base64 as defined by RFC 2045, by Freed and Borenstein.
Base64() - Constructor for class org.apache.commons.codec.binary.Base64
 
BinaryDecoder - interface org.apache.commons.codec.BinaryDecoder.
Defines common decoding methods for byte array decoders.
BinaryEncoder - interface org.apache.commons.codec.BinaryEncoder.
Defines common encoding methods for byte array encoders.
base64Alphabet - Static variable in class org.apache.commons.codec.binary.Base64
 

C

CHUNK_SEPARATOR - Static variable in class org.apache.commons.codec.binary.Base64
Chunk separator, we use a newline to separate chunks of encoded data (if you ask for it to be chunked)
CHUNK_SIZE - Static variable in class org.apache.commons.codec.binary.Base64
Chunk size according to RFC 2045
charAt(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Gets the character at index index if available, otherwise it returns Character.MIN_VALUE so that there is some sort of a default
clean(String) - Method in class org.apache.commons.codec.language.Soundex
Cleans up the input string before Soundex processing by only returning upper case letters.
cleanInput(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Cleans the input
compare(Object, Object) - Method in class org.apache.commons.codec.StringEncoderComparator
Compares two strings based not on the strings themselves, but on an encoding of the two strings using the StringEncoder this Comparator was created with.
conditionC0(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Complex condition 0 for 'C'
conditionCH0(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Complex condition 0 for 'CH'
conditionCH1(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Complex condition 1 for 'CH'
conditionL0(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Complex condition 0 for 'L'
conditionM0(String, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Complex condition 0 for 'M'
contains(String, int, int, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 1 criteria
contains(String, int, int, String, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 2 criteria
contains(String, int, int, String, String, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 3 criteria
contains(String, int, int, String, String, String, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 4 criteria
contains(String, int, int, String, String, String, String, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 5 criteria
contains(String, int, int, String, String, String, String, String, String) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Shortcut method with 6 criteria
contains(String, int, int, String[]) - Static method in class org.apache.commons.codec.language.DoubleMetaphone
Determines whether value contains any of the criteria starting at index start and matching up to length length

D

Decoder - interface org.apache.commons.codec.Decoder.
Provides the highest level of abstraction for Decoders.
DecoderException - exception org.apache.commons.codec.DecoderException.
Thrown when a Decoder has encountered a failure condition during a decode.
DecoderException(String) - Constructor for class org.apache.commons.codec.DecoderException
Creates a DecoderException
DigestUtils - class org.apache.commons.codec.digest.DigestUtils.
Operations to simplifiy common MessageDigest tasks.
DigestUtils() - Constructor for class org.apache.commons.codec.digest.DigestUtils
 
DoubleMetaphone - class org.apache.commons.codec.language.DoubleMetaphone.
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.DoubleMetaphoneResult - class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult.
Inner class for storing results, since there is the optional alternate encoding.
DoubleMetaphone.DoubleMetaphoneResult(int) - Constructor for class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
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 interface org.apache.commons.codec.StringDecoder
Decodes a String and returns a String.
decode(Object) - Method in class org.apache.commons.codec.binary.Base64
Decodes an Object using the base64 algorithm.
decode(byte[]) - Method in class org.apache.commons.codec.binary.Base64
Decodes a byte[] containing containing characters in the Base64 alphabet.
decode(byte[]) - Method in class org.apache.commons.codec.binary.Hex
Converts an array of character bytes representing hexidecimal 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 hexidecimal values into an array of bytes of those same values.
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 character set.
decode(String) - Method in class org.apache.commons.codec.net.URLCodec
Decodes a URL safe string into its original form.
decode(Object) - Method in class org.apache.commons.codec.net.URLCodec
Decodes a URL safe object into its original form.
decodeBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
Decodes Base64 data into octects
decodeHex(char[]) - Static method in class org.apache.commons.codec.binary.Hex
Converts an array of characters representing hexidecimal values into an array of bytes of those same values.
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.
digits - Static variable in class org.apache.commons.codec.binary.Hex
Used building output as Hex
discardNonBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
Discards any characters outside of the base64 alphabet, per the requirements on page 25 of RFC 2045 - "Any characters outside of the base64 alphabet are to be ignored in base64 encoded data."
discardWhitespace(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
Discards any whitespace from a base-64 encoded block.
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.

E

EIGHTBIT - Static variable in class org.apache.commons.codec.binary.Base64
Used to calculate the number of bits in a byte.
ES_EP_EB_EL_EY_IB_IL_IN_IE_EI_ER - Static variable in class org.apache.commons.codec.language.DoubleMetaphone
 
Encoder - interface org.apache.commons.codec.Encoder.
Provides the highest level of abstraction for Encoders.
EncoderException - exception org.apache.commons.codec.EncoderException.
Thrown when there is a failure condition during the encoding process.
EncoderException(String) - Constructor for class org.apache.commons.codec.EncoderException
Creates a new instance of this exception with an useful message.
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(String) - Method in interface org.apache.commons.codec.StringEncoder
Encodes a String and returns a String.
encode(Object) - Method in class org.apache.commons.codec.binary.Base64
Encodes an Object using the base64 algorithm.
encode(byte[]) - Method in class org.apache.commons.codec.binary.Base64
Encodes a byte[] containing binary data, into a byte[] containing characters in the Base64 alphabet.
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 hexidecimal 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 hexidecimal values of each byte in order.
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.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(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.RefinedSoundex
Encodes an Object 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(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 character set.
encode(String) - Method in class org.apache.commons.codec.net.URLCodec
Encodes a string into its URL safe form.
encode(Object) - Method in class org.apache.commons.codec.net.URLCodec
Encodes an object into its URL safe form.
encodeBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
Encodes binary data using the base64 algorithm (this does not "chunk" the output).
encodeBase64(byte[], boolean) - Static method in class org.apache.commons.codec.binary.Base64
Encodes hex octects into Base64.
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
encodeHex(byte[]) - Static method in class org.apache.commons.codec.binary.Hex
Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order.
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.
encoding - Variable in class org.apache.commons.codec.net.URLCodec
The String encoding used for decoding and encoding.

F

FOURBYTE - Static variable in class org.apache.commons.codec.binary.Base64
Used to get the number of Quadruples
frontv - Variable in class org.apache.commons.codec.language.Metaphone
Variable used in Metaphone algorithm

G

getAlternate() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
getDigest(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
Returns a MessageDigest for the given algorithm.
getEncoding() - Method in class org.apache.commons.codec.net.URLCodec
The String encoding used for decoding and encoding.
getMappingCode(char) - Method in class org.apache.commons.codec.language.RefinedSoundex
Returns the mapping code for a given character.
getMappingCode(String, int) - Method in class org.apache.commons.codec.language.Soundex
Used internally by the SoundEx algorithm.
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
Deprecated. This feature is not needed since the encoding size must be constant.
getMd5Digest() - Static method in class org.apache.commons.codec.digest.DigestUtils
Returns an MD5 MessageDigest.
getPrimary() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
getShaDigest() - Static method in class org.apache.commons.codec.digest.DigestUtils
Returns an SHA digest.
getSoundexMapping() - Method in class org.apache.commons.codec.language.Soundex
 

H

Hex - class org.apache.commons.codec.binary.Hex.
Hex encoder and decoder.
Hex() - Constructor for class org.apache.commons.codec.binary.Hex
 
handleAEIOUY(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'A', 'E', 'I', 'O', 'U', and 'Y' cases
handleC(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'C' cases
handleCC(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'CC' cases
handleCH(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'CH' cases
handleD(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'D' cases
handleG(String, DoubleMetaphone.DoubleMetaphoneResult, int, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'G' cases
handleGH(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'GH' cases
handleH(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'H' cases
handleJ(String, DoubleMetaphone.DoubleMetaphoneResult, int, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'J' cases
handleL(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'L' cases
handleP(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'P' cases
handleR(String, DoubleMetaphone.DoubleMetaphoneResult, int, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'R' cases
handleS(String, DoubleMetaphone.DoubleMetaphoneResult, int, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'S' cases
handleSC(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'SC' cases
handleT(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'T' cases
handleW(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'W' cases
handleX(String, DoubleMetaphone.DoubleMetaphoneResult, int) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'X' cases
handleZ(String, DoubleMetaphone.DoubleMetaphoneResult, int, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Handles 'Z' cases

I

isArrayByteBase64(byte[]) - Static method in class org.apache.commons.codec.binary.Base64
This array tests a given byte array to see if it contains only valid characters within the Base64 alphabet.
isBase64(byte) - Static method in class org.apache.commons.codec.binary.Base64
 
isComplete() - Method in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
isDoubleMetaphoneEqual(String, String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Check if the Double Metaphone values of two String values are equal
isDoubleMetaphoneEqual(String, String, boolean) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Check if the Double Metaphone values of two String values are equal, optionally using the alternate value
isMetaphoneEqual(String, String) - Method in class org.apache.commons.codec.language.Metaphone
Tests is the metaphones of two strings are identical.
isSilentStart(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Determines whether or not the value starts with a silent letter.
isSlavoGermanic(String) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Determines whether or not a value is of slavo-germanic orgin.
isVowel(char) - Method in class org.apache.commons.codec.language.DoubleMetaphone
Determines whether or not a character is a vowel or not

L

LOOKUPLENGTH - Static variable in class org.apache.commons.codec.binary.Base64
Lookup length
L_R_N_M_B_H_F_V_W_SPACE - Static variable in class org.apache.commons.codec.language.DoubleMetaphone
 
L_T_K_S_N_M_B_Z - Static variable in class org.apache.commons.codec.language.DoubleMetaphone
 
lookUpBase64Alphabet - Static variable in class org.apache.commons.codec.binary.Base64
 

M

Metaphone - class org.apache.commons.codec.language.Metaphone.
Encodes a string into a metaphone value.
Metaphone() - Constructor for class org.apache.commons.codec.language.Metaphone
Creates an instance of the Metaphone encoder
map(char) - Method in class org.apache.commons.codec.language.Soundex
Maps the given upper-case character to it's Soudex code.
maxCodeLen - Variable in class org.apache.commons.codec.language.DoubleMetaphone
Maximum length of an encoding, default is 4
maxCodeLen - Variable in class org.apache.commons.codec.language.Metaphone
The max code length for metaphone is 4
maxLength - Variable in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 
maxLength - Variable in class org.apache.commons.codec.language.Soundex
Deprecated. This feature is not needed since the encoding size must be constant.
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(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
Calculates the MD5 digest and returns the value as a 16 element byte[].
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(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.
metaphone(String) - Method in class org.apache.commons.codec.language.Metaphone
Find the metaphone value of a String.

O

org.apache.commons.codec - package org.apache.commons.codec
The types in this package define a small set of interfaces used by the various implementations in the sub-packages.
org.apache.commons.codec.binary - package org.apache.commons.codec.binary
Base64 and Hexadecimal String encoding and decoding.
org.apache.commons.codec.digest - package org.apache.commons.codec.digest
Operations to simplifiy common MessageDigest tasks.
org.apache.commons.codec.language - package org.apache.commons.codec.language
Language and phonetic encoders.
org.apache.commons.codec.net - package org.apache.commons.codec.net
Network related encoding and decoding.

P

PAD - Static variable in class org.apache.commons.codec.binary.Base64
Byte used to pad output
primary - Variable in class org.apache.commons.codec.language.DoubleMetaphone.DoubleMetaphoneResult
 

R

RefinedSoundex - class org.apache.commons.codec.language.RefinedSoundex.
Encodes a string into a refined soundex value.
RefinedSoundex() - Constructor for class org.apache.commons.codec.language.RefinedSoundex
Creates an instance of the RefinedSoundex object using the default US English mapping.
RefinedSoundex(char[]) - Constructor for class org.apache.commons.codec.language.RefinedSoundex
Creates a refined soundex instance using a custom mapping.

S

SIGN - Static variable in class org.apache.commons.codec.binary.Base64
Used to test the sign of a byte
SILENT_START - Static variable in class org.apache.commons.codec.language.DoubleMetaphone
Prefixes when present which are not pronounced
SIXTEENBIT - Static variable in class org.apache.commons.codec.binary.Base64
Used when encoding something which has fewer than 24 bits
Soundex - class org.apache.commons.codec.language.Soundex.
Encodes a string into a soundex value.
Soundex() - Constructor for class org.apache.commons.codec.language.Soundex
Creates an instance of the Soundex object using the default US_ENGLISH mapping.
Soundex(char[]) - Constructor for class org.apache.commons.codec.language.Soundex
Creates a soundex instance using a custom mapping.
StringDecoder - interface org.apache.commons.codec.StringDecoder.
Decodes a String into a String.
StringEncoder - interface org.apache.commons.codec.StringEncoder.
Encodes a String into a String.
StringEncoderComparator - class org.apache.commons.codec.StringEncoderComparator.
String are comparable, and this comparator allows you to configure it with an instance of a class which implements the StringEncoder.
StringEncoderComparator() - Constructor for class org.apache.commons.codec.StringEncoderComparator
Constructs a new instance.
StringEncoderComparator(StringEncoder) - Constructor for class org.apache.commons.codec.StringEncoderComparator
Constructs a new instance with the given soundex algorithm.
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
Deprecated. This feature is not needed since the encoding size must be constant.
setSoundexMapping(char[]) - Method in class org.apache.commons.codec.language.Soundex
 
sha(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
Calculates the SHA digest and returns the value as a byte[].
sha(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
Calculates the SHA digest and returns the value as a byte[].
shaHex(byte[]) - Static method in class org.apache.commons.codec.digest.DigestUtils
Calculates the SHA digest and returns the value as a hex string.
shaHex(String) - Static method in class org.apache.commons.codec.digest.DigestUtils
Calculates the SHA digest and returns the value as a hex string.
soundex(String) - Method in class org.apache.commons.codec.language.RefinedSoundex
Retreives the Refined Soundex code for a given String object.
soundex(String) - Method in class org.apache.commons.codec.language.Soundex
Retreives the Soundex code for a given String object.
soundexMapping - Variable in class org.apache.commons.codec.language.RefinedSoundex
Every letter of the alphabet is "mapped" to a numerical value.
soundexMapping - Variable in class org.apache.commons.codec.language.Soundex
Every letter of the alphabet is "mapped" to a numerical value.
stringEncoder - Variable in class org.apache.commons.codec.StringEncoderComparator
Internal encoder instance.

T

TWENTYFOURBITGROUP - Static variable in class org.apache.commons.codec.binary.Base64
Constant used to determine how many bits data contains

U

URLCodec - class org.apache.commons.codec.net.URLCodec.
Implements the 'www-form-urlencoded' encoding scheme, also misleadingly known as URL encoding.
URLCodec() - Constructor for class org.apache.commons.codec.net.URLCodec
Default constructor.
URLCodec(String) - Constructor for class org.apache.commons.codec.net.URLCodec
Constructor which allows for the selection of an Encoding
US_ENGLISH - Static variable in class org.apache.commons.codec.language.RefinedSoundex
This static variable contains an instance of the RefinedSoundex using the US_ENGLISH mapping.
US_ENGLISH - Static variable in class org.apache.commons.codec.language.Soundex
This static variable contains an instance of the Soundex using the US_ENGLISH mapping.
US_ENGLISH_MAPPING - Static variable in class org.apache.commons.codec.language.RefinedSoundex
RefinedSoundex is *refined* for a number of reasons one being that the mappings have been altered.
US_ENGLISH_MAPPING - Static variable in class org.apache.commons.codec.language.Soundex
This is a default mapping of the 26 letters used in US english.

V

VOWELS - Static variable in class org.apache.commons.codec.language.DoubleMetaphone
"Vowels" to test for
varson - Variable in class org.apache.commons.codec.language.Metaphone
Variable used in Metaphone algorithm
vowels - Variable in class org.apache.commons.codec.language.Metaphone
Five values in the English language

W

WWW_FORM_URL - Static variable in class org.apache.commons.codec.net.URLCodec
BitSet of www-form-url safe characters.

A B C D E F G H I L M O P R S T U V W

${component.name} version 1.2 - Copyright © 2003 - Apache Software Foundation