All Classes Interface Summary Class Summary Enum Summary Exception Summary
Class |
Description |
AggregateTranslator |
Executes a sequence of translators one after the other.
|
AnnotationUtils |
Helper methods for working with Annotation instances.
|
ArrayUtils |
Operations on arrays, primitive arrays (like int[] ) and
primitive wrapper arrays (like Integer[] ).
|
AtomicInitializer<T> |
A specialized implementation of the ConcurrentInitializer interface
based on an AtomicReference variable.
|
AtomicSafeInitializer<T> |
|
BackgroundInitializer<T> |
A class that allows complex initialization operations in a background task.
|
BasicThreadFactory |
An implementation of the ThreadFactory interface that provides some
configuration options for the threads it creates.
|
BasicThreadFactory.Builder |
A builder class for creating instances of
BasicThreadFactory .
|
BitField |
Supports operations on bit-mapped fields.
|
BooleanUtils |
Operations on boolean primitives and Boolean objects.
|
Builder<T> |
The Builder interface is designed to designate a class as a builder
object in the Builder design pattern.
|
CallableBackgroundInitializer<T> |
|
CharEncoding |
Character encoding names required of every implementation of the Java platform.
|
CharSequenceTranslator |
An API for translating text.
|
CharSequenceUtils |
Operations on CharSequence that are
null safe.
|
CharSet |
A set of characters.
|
CharSetUtils |
Operations on CharSet instances.
|
CharUtils |
Operations on char primitives and Character objects.
|
ClassPathUtils |
Operations regarding the classpath.
|
ClassUtils |
Operates on classes without using reflection.
|
ClassUtils.Interfaces |
|
CloneFailedException |
Exception thrown when a clone cannot be created.
|
CodePointTranslator |
Helper subclass to CharSequenceTranslator to allow for translations that
will replace up to one character at a time.
|
CompareToBuilder |
Assists in implementing Comparable.compareTo(Object) methods.
|
CompositeFormat |
Formats using one formatter and parses using a different formatter.
|
ConcurrentException |
An exception class used for reporting error conditions related to accessing
data of background tasks.
|
ConcurrentInitializer<T> |
Definition of an interface for the thread-safe initialization of objects.
|
ConcurrentRuntimeException |
An exception class used for reporting runtime error conditions related to
accessing data of background tasks.
|
ConcurrentUtils |
An utility class providing functionality related to the
java.util.concurrent package.
|
ConstantInitializer<T> |
A very simple implementation of the ConcurrentInitializer interface
which always returns the same object.
|
ConstructorUtils |
Utility reflection methods focused on constructors, modeled after
MethodUtils .
|
ContextedException |
An exception that provides an easy and safe way to add contextual information.
|
ContextedRuntimeException |
A runtime exception that provides an easy and safe way to add contextual information.
|
Conversion |
Static methods to convert a type into another, with endianness and bit ordering awareness.
|
DateFormatUtils |
Date and time formatting utilities and constants.
|
DateParser |
DateParser is the "missing" interface for the parsing methods of
DateFormat .
|
DatePrinter |
DatePrinter is the "missing" interface for the format methods of
DateFormat .
|
DateUtils |
A suite of utilities surrounding the use of the
Calendar and Date object.
|
DefaultExceptionContext |
Default implementation of the context storing the label-value pairs for contexted exceptions.
|
Diff<T> |
A Diff contains the differences between two Diffable class
fields.
|
Diffable<T> |
Diffable classes can be compared with other objects
for differences.
|
DiffBuilder |
|
DiffResult |
A DiffResult contains a collection of the differences between two
Diffable objects.
|
DurationFormatUtils |
Duration formatting utilities and constants.
|
EntityArrays |
Class holding various entity data for HTML and XML - generally for use with
the LookupTranslator.
|
EnumUtils |
Utility library to provide helper methods for Java enums.
|
EqualsBuilder |
Assists in implementing Object.equals(Object) methods.
|
EventListenerSupport<L> |
An EventListenerSupport object can be used to manage a list of event
listeners of a particular type.
|
EventUtils |
Provides some useful event-based utility methods.
|
ExceptionContext |
Allows the storage and retrieval of contextual information based on label-value
pairs for exceptions.
|
ExceptionUtils |
Provides utilities for manipulating and examining
Throwable objects.
|
ExtendedMessageFormat |
Extends java.text.MessageFormat to allow pluggable/additional formatting
options for embedded format elements.
|
FastDateFormat |
FastDateFormat is a fast and thread-safe version of
SimpleDateFormat .
|
FastDateParser |
FastDateParser is a fast and thread-safe version of
SimpleDateFormat .
|
FastDatePrinter |
FastDatePrinter is a fast and thread-safe version of
SimpleDateFormat .
|
FieldUtils |
Utilities for working with Field s by reflection.
|
FormatFactory |
Format factory.
|
FormattableUtils |
Provides utilities for working with the Formattable interface.
|
Fraction |
Fraction is a Number implementation that
stores fractions accurately.
|
HashCodeBuilder |
Assists in implementing Object.hashCode() methods.
|
IEEE754rUtils |
Provides IEEE-754r variants of NumberUtils methods.
|
ImmutablePair<L,R> |
An immutable pair consisting of two Object elements.
|
ImmutableTriple<L,M,R> |
An immutable triple consisting of three Object elements.
|
InheritanceUtils |
Utility methods focusing on inheritance.
|
JavaUnicodeEscaper |
Translates codepoints to their Unicode escaped value suitable for Java source.
|
JavaVersion |
An enum representing all the versions of the Java specification.
|
LazyInitializer<T> |
This class provides a generic implementation of the lazy initialization
pattern.
|
LocaleUtils |
Operations to assist when working with a Locale .
|
LookupTranslator |
Translates a value using a lookup table.
|
MethodUtils |
Utility reflection methods focused on Method s, originally from Commons BeanUtils.
|
MultiBackgroundInitializer |
A specialized BackgroundInitializer implementation that can deal with
multiple background initialization tasks.
|
MultiBackgroundInitializer.MultiBackgroundInitializerResults |
A data class for storing the results of the background initialization
performed by MultiBackgroundInitializer .
|
Mutable<T> |
Provides mutable access to a value.
|
MutableBoolean |
A mutable boolean wrapper.
|
MutableByte |
A mutable byte wrapper.
|
MutableDouble |
A mutable double wrapper.
|
MutableFloat |
A mutable float wrapper.
|
MutableInt |
A mutable int wrapper.
|
MutableLong |
A mutable long wrapper.
|
MutableObject<T> |
A mutable Object wrapper.
|
MutablePair<L,R> |
A mutable pair consisting of two Object elements.
|
MutableShort |
A mutable short wrapper.
|
MutableTriple<L,M,R> |
A mutable triple consisting of three Object elements.
|
NotImplementedException |
Thrown to indicate that a block of code has not been implemented.
|
NumberUtils |
Provides extra functionality for Java Number classes.
|
NumericEntityEscaper |
Translates codepoints to their XML numeric entity escaped value.
|
NumericEntityUnescaper |
Translate XML numeric entities of the form &#[xX]?\d+;? to
the specific codepoint.
|
NumericEntityUnescaper.OPTION |
|
ObjectUtils |
Operations on Object .
|
ObjectUtils.Null |
Class used as a null placeholder where null
has another meaning.
|
OctalUnescaper |
Translate escaped octal Strings back to their octal values.
|
Pair<L,R> |
A pair consisting of two elements.
|
RandomStringUtils |
Operations for random String s.
|
RandomUtils |
Utility library that supplements the standard Random class.
|
Range<T> |
An immutable range of objects from a minimum to maximum point inclusive.
|
RecursiveToStringStyle |
|
ReflectionToStringBuilder |
Assists in implementing Object.toString() methods using reflection.
|
SerializationException |
Exception thrown when the Serialization process fails.
|
SerializationUtils |
Assists with the serialization process and performs additional functionality based
on serialization.
|
StandardToStringStyle |
|
StopWatch |
StopWatch provides a convenient API for timings.
|
StrBuilder |
Builds a string from constituent parts providing a more flexible and powerful API
than StringBuffer.
|
StringEscapeUtils |
Escapes and unescapes String s for
Java, Java Script, HTML and XML.
|
StringUtils |
Operations on String that are
null safe.
|
StrLookup<V> |
Lookup a String key to a String value.
|
StrMatcher |
A matcher class that can be queried to determine if a character array
portion matches.
|
StrSubstitutor |
Substitutes variables within a string by values.
|
StrTokenizer |
Tokenizes a string based based on delimiters (separators)
and supporting quoting and ignored character concepts.
|
SystemUtils |
Helpers for java.lang.System .
|
TimedSemaphore |
A specialized semaphore implementation that provides a number of
permits in a given time frame.
|
ToStringBuilder |
Assists in implementing Object.toString() methods.
|
ToStringStyle |
|
Triple<L,M,R> |
A triple consisting of three elements.
|
Typed<T> |
Generalization of "has a type."
|
TypeLiteral<T> |
Type literal comparable to javax.enterprise.util.TypeLiteral ,
made generally available outside the JEE context.
|
TypeUtils |
Utility methods focusing on type inspection, particularly with regard to
generics.
|
TypeUtils.WildcardTypeBuilder |
WildcardType builder.
|
UnicodeEscaper |
Translates codepoints to their Unicode escaped value.
|
UnicodeUnescaper |
Translates escaped Unicode values of the form \\u+\d\d\d\d back to
Unicode.
|
UnicodeUnpairedSurrogateRemover |
Helper subclass to CharSequenceTranslator to remove unpaired surrogates.
|
Validate |
This class assists in validating arguments.
|
WordUtils |
Operations on Strings that contain words.
|