A C D E G H I J L M N O P R S T U

A

add(String) - Method in class org.apache.commons.lang.CharSet
Add a set definition string to the set

C

capitalise(String) - Static method in class org.apache.commons.lang.StringUtils
Capitalise a string.
capitaliseAllWords(String) - Static method in class org.apache.commons.lang.StringUtils
Capitalise all the words in a string.
cause - Variable in class org.apache.commons.lang.exception.NestableRuntimeException
Holds the reference to the exception or error that caused this exception to be thrown.
cause - Variable in class org.apache.commons.lang.exception.NestableDelegate
Holds the reference to the exception or error that caused this exception to be thrown.
cause - Variable in class org.apache.commons.lang.exception.NestableException
Holds the reference to the exception or error that caused this exception to be thrown.
center(String, int) - Static method in class org.apache.commons.lang.StringUtils
Center a string in a larger string of size n.
center(String, int, String) - Static method in class org.apache.commons.lang.StringUtils
Center a string in a larger string of size n.
CHAR_BUFFER_SIZE - Static variable in class org.apache.commons.lang.StringUtils
The size of the buffer to use when working with I/O (4 kB).
CharRange - class org.apache.commons.lang.CharRange.
A range of characters.
CharRange(char) - Constructor for class org.apache.commons.lang.CharRange
Construct a CharRange over a single character.
CharRange(char, char) - Constructor for class org.apache.commons.lang.CharRange
Construct a CharRange over a set of characters.
CharRange(String, String) - Constructor for class org.apache.commons.lang.CharRange
Construct a CharRange over a set of characters.
CharSet - class org.apache.commons.lang.CharSet.
A set of characters.
CharSet(String[]) - Constructor for class org.apache.commons.lang.CharSet
Restricted consructor.
CharSetUtils - class org.apache.commons.lang.CharSetUtils.
Numerous routines to manipulate a character set.
CharSetUtils() - Constructor for class org.apache.commons.lang.CharSetUtils
 
chomp(String) - Static method in class org.apache.commons.lang.StringUtils
Remove the last newline, and everything after it from a String.
chomp(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove the last value of a supplied String, and everything after it from a String.
chompLast(String) - Static method in class org.apache.commons.lang.StringUtils
Remove a newline if and only if it is at the end of the supplied string.
chompLast(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove a value if and only if the string ends with that value.
chop(String) - Static method in class org.apache.commons.lang.StringUtils
Remove the last character from a String.
chopNewline(String) - Static method in class org.apache.commons.lang.StringUtils
Remove \n from end of a String if it's there.
clean(String) - Static method in class org.apache.commons.lang.StringUtils
Removes white space from both ends of this string, handling null by returning an empty string.
clone(Serializable) - Static method in class org.apache.commons.lang.SerializationUtils
Deep clone an object using serialization.
close - Variable in class org.apache.commons.lang.CharRange
 
concatenate(Object[]) - Static method in class org.apache.commons.lang.StringUtils
Concatenates elements of an array into a single string.
contains(char) - Method in class org.apache.commons.lang.CharSet
Does the set contain the character specified
convertNativeToUnicode(String, String) - Static method in class org.apache.commons.lang.StringUtils
Convert a string from a native encoding to unicode.
convertUnicodeToNative(String, String) - Static method in class org.apache.commons.lang.StringUtils
Convert a string from unicode to bytes in a native encoding.
count(String, String) - Static method in class org.apache.commons.lang.CharSetUtils
Takes an argument in set-syntax, see evaluateSet, and returns the number of characters present in the specified string.
count(String, String[]) - Static method in class org.apache.commons.lang.CharSetUtils
Takes an argument in set-syntax, see evaluateSet, and returns the number of characters present in the specified string.
countMatches(String, String) - Static method in class org.apache.commons.lang.StringUtils
How many times is the substring in the larger string.
createBigDecimal(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a BigDecimal
createBigInteger(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a BigInteger
createDouble(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a Double
createFloat(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a Float
createInteger(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a Integer, handling hex and octal notations.
createLong(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to a Long
createNumber(String) - Static method in class org.apache.commons.lang.NumberUtils
Turns a string value into a java.lang.Number.

D

decompose(Throwable) - Method in class org.apache.commons.lang.exception.NestableDelegate
Captures the stack trace associated with a Throwable object, decomposing it into a list of stack frames.
defaultIfNull(Object, Object) - Static method in class org.apache.commons.lang.ObjectUtils
Returns a default value if the object passed is null.
defaultString(String) - Static method in class org.apache.commons.lang.StringUtils
Return either the passed in String, or if it is null, then an empty String.
defaultString(String, String) - Static method in class org.apache.commons.lang.StringUtils
Return either the passed in String, or if it is null, then a passed in default String.
delegate - Variable in class org.apache.commons.lang.exception.NestableRuntimeException
The helper instance which contains much of the code which we delegate to.
delegate - Variable in class org.apache.commons.lang.exception.NestableException
The helper instance which contains much of the code which we delegate to.
delete(String, String) - Static method in class org.apache.commons.lang.CharSetUtils
Takes an argument in set-syntax, see evaluateSet, and deletes any of characters present in the specified string.
delete(String, String[]) - Static method in class org.apache.commons.lang.CharSetUtils
Takes an argument in set-syntax, see evaluateSet, and deletes any of characters present in the specified string.
deleteWhitespace(String) - Static method in class org.apache.commons.lang.StringUtils
Deletes all whitespace from a String.
deserialize(byte[]) - Static method in class org.apache.commons.lang.SerializationUtils
Deserializes a single object from an array of bytes.
deserialize(InputStream) - Static method in class org.apache.commons.lang.SerializationUtils
Deserializes an object from the specified stream.

E

equals(Object) - Method in class org.apache.commons.lang.NumberRange
Indicates whether some other object is "equal" to this one.
equals(Object, Object) - Static method in class org.apache.commons.lang.ObjectUtils
Compares two objects for equality, where either one or both objects may be null.
equals(String, String) - Static method in class org.apache.commons.lang.StringUtils
Compares two Strings, returning true if they are equal.
equalsIgnoreCase(String, String) - Static method in class org.apache.commons.lang.StringUtils
Compares two Strings, returning true if they are equal ignoring case.
escape(String) - Static method in class org.apache.commons.lang.StringUtils
Escapes any values it finds into their String form.
evaluateSet(String[]) - Static method in class org.apache.commons.lang.CharSetUtils
Creates a CharSetUtils object which allows a certain amount of set logic to be performed upon the following syntax: "aeio" which implies 'a','e',..

G

getCause() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
getCause() - Method in class org.apache.commons.lang.exception.NestableException
 
getCause() - Method in interface org.apache.commons.lang.exception.Nestable
Returns the reference to the exception or error that caused the exception implementing the Nestable to be thrown.
getChomp(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove everything and return the last value of a supplied String, and everything after it from a String.
getEnd() - Method in class org.apache.commons.lang.CharRange
Get the end character for this character range
getLength() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Returns the number of nested Throwables represented by this Nestable, including this Nestable.
getLength() - Method in class org.apache.commons.lang.exception.NestableDelegate
Returns the number of Throwables contained in the Nestable contained by this delegate.
getLength() - Method in class org.apache.commons.lang.exception.NestableException
Returns the number of nested Throwables represented by this Nestable, including this Nestable.
getLength() - Method in interface org.apache.commons.lang.exception.Nestable
Returns the number of nested Throwables represented by this Nestable, including this Nestable.
getLevenshteinDistance(String, String) - Static method in class org.apache.commons.lang.StringUtils
Find the Levenshtein distance between two strings.
getMaximum() - Method in class org.apache.commons.lang.NumberRange
Returns the maximum number in this range.
getMessage() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
getMessage() - Method in class org.apache.commons.lang.exception.NestableException
 
getMessage() - Method in interface org.apache.commons.lang.exception.Nestable
Returns the error message of this and any nested Throwable.
getMessage(int) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
getMessage(int) - Method in class org.apache.commons.lang.exception.NestableDelegate
 
getMessage(int) - Method in class org.apache.commons.lang.exception.NestableException
 
getMessage(int) - Method in interface org.apache.commons.lang.exception.Nestable
Returns the error message of the Throwable in the chain of Throwables at the specified index, numbererd from 0.
getMessage(String) - Method in class org.apache.commons.lang.exception.NestableDelegate
 
getMessages() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Returns the error message of this and any nested Throwables in an array of Strings, one element for each message.
getMessages() - Method in class org.apache.commons.lang.exception.NestableDelegate
 
getMessages() - Method in class org.apache.commons.lang.exception.NestableException
Returns the error message of this and any nested Throwables in an array of Strings, one element for each message.
getMessages() - Method in interface org.apache.commons.lang.exception.Nestable
Returns the error message of this and any nested Throwables in an array of Strings, one element for each message.
getMinimum() - Method in class org.apache.commons.lang.NumberRange
Returns the minimum number in this range.
getNestedString(String, String) - Static method in class org.apache.commons.lang.StringUtils
Get the String that is nested in between two instances of the same String.
getNestedString(String, String, String) - Static method in class org.apache.commons.lang.StringUtils
Get the string that is nested in between two strings.
getPrechomp(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove and return everything before the first value of a supplied String from another String.
getStart() - Method in class org.apache.commons.lang.CharRange
Get the start character for this character range
getThrowable(int) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
getThrowable(int) - Method in class org.apache.commons.lang.exception.NestableDelegate
 
getThrowable(int) - Method in class org.apache.commons.lang.exception.NestableException
 
getThrowable(int) - Method in interface org.apache.commons.lang.exception.Nestable
Returns the Throwable in the chain of Throwables at the specified index, numbererd from 0.
getThrowables() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
getThrowables() - Method in class org.apache.commons.lang.exception.NestableDelegate
 
getThrowables() - Method in class org.apache.commons.lang.exception.NestableException
 
getThrowables() - Method in interface org.apache.commons.lang.exception.Nestable
Returns the error message of this and any nested Throwables in an array of Strings, one element for each message.

H

hashCode() - Method in class org.apache.commons.lang.NumberRange
Returns a hash code value for this object.

I

includesNumber(Number) - Method in class org.apache.commons.lang.NumberRange
Tests whether the specified number occurs within this range.
includesRange(NumberRange) - Method in class org.apache.commons.lang.NumberRange
Tests whether the specified range occurs entirely within this range.
indexOfAny(String, String[]) - Static method in class org.apache.commons.lang.StringUtils
Find the earliest index of any of a set of potential substrings.
indexOfThrowable(Class) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Returns the index, numbered from 0, of the first occurrence of the specified type in the chain of Throwables, or -1 if the specified type is not found in the chain.
indexOfThrowable(Class) - Method in class org.apache.commons.lang.exception.NestableException
Returns the index, numbered from 0, of the first occurrence of the specified type in the chain of Throwables, or -1 if the specified type is not found in the chain.
indexOfThrowable(Class) - Method in interface org.apache.commons.lang.exception.Nestable
Returns the index, numbered from 0, of the first occurrence of the specified type in the chain of Throwables, or -1 if the specified type is not found in the chain.
indexOfThrowable(int, Class) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Returns the index, numbered from 0, of the first Throwable that matches the specified type in the chain of Throwables with an index greater than or equal to the specified position, or -1 if the type is not found.
indexOfThrowable(int, Class) - Method in class org.apache.commons.lang.exception.NestableDelegate
 
indexOfThrowable(int, Class) - Method in class org.apache.commons.lang.exception.NestableException
Returns the index, numbered from 0, of the first Throwable that matches the specified type in the chain of Throwables with an index greater than or equal to the specified position, or -1 if the type is not found.
indexOfThrowable(int, Class) - Method in interface org.apache.commons.lang.exception.Nestable
Returns the index, numbered from 0, of the first Throwable that matches the specified type in the chain of Throwables with an index greater than or equal to the specified position, or -1 if the type is not found.
inRange(char) - Method in class org.apache.commons.lang.CharRange
Is the passed in character inside this range
isAllZeros(String) - Static method in class org.apache.commons.lang.NumberUtils
Utility method for createNumber.
isAlpha(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode letters.
isAlphanumeric(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode letters or digits.
isAlphanumericSpace(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode letters, digits or space (' ').
isAlphaSpace(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode letters and space (' ').
isDigits(String) - Static method in class org.apache.commons.lang.NumberUtils
Checks whether the String contains only digit characters.
isEmpty(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if a (trimmed) String is null or empty.
isNegated() - Method in class org.apache.commons.lang.CharRange
Checks if this CharRange is negated.
isNotEmpty(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if a String is non null and is not empty (length > 0).
isNumber(String) - Static method in class org.apache.commons.lang.NumberUtils
Checks whether the String a valid Java number.
isNumeric(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode digits.
isNumericSpace(String) - Static method in class org.apache.commons.lang.StringUtils
Checks if the string contains only unicode digits or space (' ').
isRange() - Method in class org.apache.commons.lang.CharRange
Is this CharRange over many characters

J

join(Iterator, String) - Static method in class org.apache.commons.lang.StringUtils
Joins the elements of the provided iterator into a single string containing the provided elements.
join(Object[], String) - Static method in class org.apache.commons.lang.StringUtils
Joins the elements of the provided array into a single string containing the provided list of elements.

L

lastIndexOfAny(String, String[]) - Static method in class org.apache.commons.lang.StringUtils
Find the latest index of any of a set of potential substrings.
left(String, int) - Static method in class org.apache.commons.lang.StringUtils
Gets the leftmost n characters of a string.
leftPad(String, int) - Static method in class org.apache.commons.lang.StringUtils
Left pad a String with spaces.
leftPad(String, int, String) - Static method in class org.apache.commons.lang.StringUtils
Left pad a String with a specified string.
lowerCase(String) - Static method in class org.apache.commons.lang.StringUtils
Convert a String to lower case, null string returns null.

M

max - Variable in class org.apache.commons.lang.NumberRange
 
maximum(int, int, int) - Static method in class org.apache.commons.lang.NumberUtils
Get the maximum of three values.
mid(String, int, int) - Static method in class org.apache.commons.lang.StringUtils
Gets n characters from the middle of a string.
min - Variable in class org.apache.commons.lang.NumberRange
 
minimum(int, int, int) - Static method in class org.apache.commons.lang.NumberUtils
Get the minimum of three values.
MUST_BE_THROWABLE - Static variable in class org.apache.commons.lang.exception.NestableDelegate
Constructor error message.

N

negated - Variable in class org.apache.commons.lang.CharRange
 
Nestable - interface org.apache.commons.lang.exception.Nestable.
An interface to be implemented by Throwable extensions which would like to be able to nest root exceptions inside themselves.
NestableDelegate - class org.apache.commons.lang.exception.NestableDelegate.
 
NestableDelegate(Nestable) - Constructor for class org.apache.commons.lang.exception.NestableDelegate
 
NestableException - exception org.apache.commons.lang.exception.NestableException.
The base class of all exceptions which can contain other exceptions.
NestableException() - Constructor for class org.apache.commons.lang.exception.NestableException
Constructs a new NestableException without specified detail message.
NestableException(String) - Constructor for class org.apache.commons.lang.exception.NestableException
Constructs a new NestableException with specified detail message.
NestableException(String, Throwable) - Constructor for class org.apache.commons.lang.exception.NestableException
Constructs a new NestableException with specified detail message and nested Throwable.
NestableException(Throwable) - Constructor for class org.apache.commons.lang.exception.NestableException
Constructs a new NestableException with specified nested Throwable.
NestableRuntimeException - exception org.apache.commons.lang.exception.NestableRuntimeException.
The base class of all runtime exceptions which can contain other exceptions.
NestableRuntimeException() - Constructor for class org.apache.commons.lang.exception.NestableRuntimeException
Constructs a new NestableRuntimeException without specified detail message.
NestableRuntimeException(String) - Constructor for class org.apache.commons.lang.exception.NestableRuntimeException
Constructs a new NestableRuntimeException with specified detail message.
NestableRuntimeException(String, Throwable) - Constructor for class org.apache.commons.lang.exception.NestableRuntimeException
Constructs a new NestableRuntimeException with specified detail message and nested Throwable.
NestableRuntimeException(Throwable) - Constructor for class org.apache.commons.lang.exception.NestableRuntimeException
Constructs a new NestableRuntimeException with specified nested Throwable.
NumberRange - class org.apache.commons.lang.NumberRange.
Represents a range of Number objects.
NumberRange(Number) - Constructor for class org.apache.commons.lang.NumberRange
Constructs a new instance using the specified number as both the minimum and maximum in theis range.
NumberRange(Number, Number) - Constructor for class org.apache.commons.lang.NumberRange
Constructs a new instance with the specified minimum and maximum numbers.
NumberUtils - class org.apache.commons.lang.NumberUtils.
Provides extra functionality for java Number classes.
NumberUtils() - Constructor for class org.apache.commons.lang.NumberUtils
 

O

ObjectUtils - class org.apache.commons.lang.ObjectUtils.
Common Object manipulation routines.
ObjectUtils() - Constructor for class org.apache.commons.lang.ObjectUtils
Prevent construction of ObjectUtils instances
org.apache.commons.lang - package org.apache.commons.lang
 
org.apache.commons.lang.exception - package org.apache.commons.lang.exception
 
overlaps(NumberRange) - Method in class org.apache.commons.lang.NumberRange
Tests whether the specified range overlaps with this range.
overlayString(String, String, int, int) - Static method in class org.apache.commons.lang.StringUtils
Overlay a part of a string with another string.

P

prechomp(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove the first value of a supplied String, and everything before it from a String.
printPartialStackTrace(PrintWriter) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
printPartialStackTrace(PrintWriter) - Method in class org.apache.commons.lang.exception.NestableException
 
printPartialStackTrace(PrintWriter) - Method in interface org.apache.commons.lang.exception.Nestable
Prints the stack trace for this exception only--root cause not included--using the provided writer.
printStackTrace() - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Prints the stack trace of this exception the the standar error stream.
printStackTrace() - Method in class org.apache.commons.lang.exception.NestableDelegate
Prints the stack trace of this exception the the standar error stream.
printStackTrace() - Method in class org.apache.commons.lang.exception.NestableException
Prints the stack trace of this exception the the standar error stream.
printStackTrace(PrintStream) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
Prints the stack trace of this exception to the specified print stream.
printStackTrace(PrintStream) - Method in class org.apache.commons.lang.exception.NestableDelegate
Prints the stack trace of this exception to the specified print stream.
printStackTrace(PrintStream) - Method in class org.apache.commons.lang.exception.NestableException
Prints the stack trace of this exception to the specified print stream.
printStackTrace(PrintWriter) - Method in class org.apache.commons.lang.exception.NestableRuntimeException
 
printStackTrace(PrintWriter) - Method in class org.apache.commons.lang.exception.NestableDelegate
Prints the stack trace of this exception to the specified print writer.
printStackTrace(PrintWriter) - Method in class org.apache.commons.lang.exception.NestableException
 
printStackTrace(PrintWriter) - Method in interface org.apache.commons.lang.exception.Nestable
Prints the stack trace of this exception to the specified print writer.

R

RANDOM - Static variable in class org.apache.commons.lang.RandomStringUtils
Random object used by random method.
random(int) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
random(int, boolean, boolean) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
random(int, char[]) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
random(int, int, int, boolean, boolean) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
random(int, int, int, boolean, boolean, char[]) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string based on a variety of options.
random(int, String) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
randomAlphabetic(int) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
randomAlphanumeric(int) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
randomAscii(int) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
randomNumeric(int) - Static method in class org.apache.commons.lang.RandomStringUtils
Creates a random string whose length is the number of characters specified.
RandomStringUtils - class org.apache.commons.lang.RandomStringUtils.
Common random String manipulation routines.
RandomStringUtils() - Constructor for class org.apache.commons.lang.RandomStringUtils
Prevent construction of RandomStringUtils instances
repeat(String, int) - Static method in class org.apache.commons.lang.StringUtils
Repeat a string n times to form a new string.
replace(String, String, String) - Static method in class org.apache.commons.lang.StringUtils
Replace all occurances of a string within another string.
replace(String, String, String, int) - Static method in class org.apache.commons.lang.StringUtils
Replace a string with another string inside a larger string, for the first max values of the search string.
replaceOnce(String, String, String) - Static method in class org.apache.commons.lang.StringUtils
Replace a string with another string inside a larger string, once.
reverse(String) - Static method in class org.apache.commons.lang.StringUtils
Reverse a String, null string returns null.
reverseArray(Object[]) - Static method in class org.apache.commons.lang.StringUtils
Reverses an array.
reverseDelimitedString(String, String) - Static method in class org.apache.commons.lang.StringUtils
Reverses a string that is delimited by a specific character.
right(String, int) - Static method in class org.apache.commons.lang.StringUtils
Gets the rightmost n characters of a string.
rightPad(String, int) - Static method in class org.apache.commons.lang.StringUtils
Right pad a String with spaces.
rightPad(String, int, String) - Static method in class org.apache.commons.lang.StringUtils
Right pad a String with a specified string.

S

SerializationException - exception org.apache.commons.lang.SerializationException.
Exception thrown when the Serialization process fails.
SerializationException() - Constructor for class org.apache.commons.lang.SerializationException
Constructs a new SerializationException without specified detail message.
SerializationException(String) - Constructor for class org.apache.commons.lang.SerializationException
Constructs a new SerializationException with specified detail message.
SerializationException(String, Throwable) - Constructor for class org.apache.commons.lang.SerializationException
Constructs a new SerializationException with specified detail message and nested Throwable.
SerializationException(Throwable) - Constructor for class org.apache.commons.lang.SerializationException
Constructs a new SerializationException with specified nested Throwable.
SerializationUtils - class org.apache.commons.lang.SerializationUtils.
Methods that assist with the serialization process, or perform additional functionality based on serialization.
SerializationUtils() - Constructor for class org.apache.commons.lang.SerializationUtils
Constructor for SerializationUtils is private
serialize(Serializable) - Static method in class org.apache.commons.lang.SerializationUtils
Serializes an object to a byte array for storage/serialization.
serialize(Serializable, OutputStream) - Static method in class org.apache.commons.lang.SerializationUtils
Serializes an object to the specified stream.
set - Variable in class org.apache.commons.lang.CharSet
 
setEnd(char) - Method in class org.apache.commons.lang.CharRange
Set the end character for this character range
setNegated(boolean) - Method in class org.apache.commons.lang.CharRange
Sets this character range to be negated or not.
setStart(char) - Method in class org.apache.commons.lang.CharRange
Set the start character for this character range
split(String) - Static method in class org.apache.commons.lang.StringUtils
Splits the provided text into a list, using whitespace as the separator.
split(String, String) - Static method in class org.apache.commons.lang.StringUtils
Splits the provided text into a list, based on a given separator.
split(String, String, int) - Static method in class org.apache.commons.lang.StringUtils
Splits the provided text into a list, based on a given separator.
squeeze(String, String) - Static method in class org.apache.commons.lang.CharSetUtils
Squeezes any repititions of a character that is mentioned in the supplied set.
squeeze(String, String[]) - Static method in class org.apache.commons.lang.CharSetUtils
Squeezes any repititions of a character that is mentioned in the supplied set.
stackTrace(Throwable) - Static method in class org.apache.commons.lang.StringUtils
Get the stack trace from a Throwable as a String.
start - Variable in class org.apache.commons.lang.CharRange
 
stringToInt(String) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to an int, returning zero if the conversion fails
stringToInt(String, int) - Static method in class org.apache.commons.lang.NumberUtils
Convert a String to an int, returning a default value if the conversion fails.
StringUtils - class org.apache.commons.lang.StringUtils.
Common String manipulation routines.
StringUtils() - Constructor for class org.apache.commons.lang.StringUtils
Prevent construction of StringUtils instances
strip(String) - Static method in class org.apache.commons.lang.StringUtils
Remove whitespace from the front and back of a String.
strip(String, String) - Static method in class org.apache.commons.lang.StringUtils
Remove a specified String from the front and back of a String.
stripAll(String[]) - Static method in class org.apache.commons.lang.StringUtils
Strip whitespace from the front and back of every string in the array.
stripAll(String[], String) - Static method in class org.apache.commons.lang.StringUtils
Strip the specified delimiter from the front and back of every String in the array.
stripEnd(String, String) - Static method in class org.apache.commons.lang.StringUtils
Strip any of a supplied string from the end of a String..
stripStart(String, String) - Static method in class org.apache.commons.lang.StringUtils
Strip any of a supplied string from the start of a String.
substring(String, int) - Static method in class org.apache.commons.lang.StringUtils
Gets a substring of the specified string avoiding exceptions.
substring(String, int, int) - Static method in class org.apache.commons.lang.StringUtils
Gets a substring of the specified string avoiding exceptions.
swapCase(String) - Static method in class org.apache.commons.lang.StringUtils
Swaps the case of String.

T

toString() - Method in class org.apache.commons.lang.CharRange
Output a string representation of the character range
toString() - Method in class org.apache.commons.lang.NumberRange
Returns the string representation of this range.
toString() - Method in class org.apache.commons.lang.CharSet
Returns a string representation of the set
translate(String, String, String) - Static method in class org.apache.commons.lang.CharSetUtils
NEEDS TO TAKE A CHAR-SET.
trim(String) - Static method in class org.apache.commons.lang.StringUtils
Removes white space from both ends of this string, handling null by returning null.

U

uncapitalise(String) - Static method in class org.apache.commons.lang.StringUtils
Uncapitalise a string.
UNSET - Static variable in class org.apache.commons.lang.CharRange
Used internally to represent null in a char.
upperCase(String) - Static method in class org.apache.commons.lang.StringUtils
Convert a String to upper case, null string returns null.

A C D E G H I J L M N O P R S T U

Copyright (c) 2001-2002 - Apache Software Foundation