Package com.sdm.quasar.client.core.common.util

Interface Summary
ClassUtilities.ClassUtilitiesImplementation This is the interface that implementors must implement.
NamedException A simple interface for exceptions that support different error cases (described by id's), exception type (severity) and support localization.
 

Class Summary
AbstractConverterIterator A simple Iterator, that may be used to convert values iterated by an original Iterator.
AbstractFilterIterator An implementation of Iterator, that allows to filter the returned elements by implementing the abstract method AbstractFilterIterator.accept(Object).
ArgumentChecker A simple helper class, that helps checking arguments by throwing IllegalArgumentExceptions, if the condition checked was not fulfilled.
ArrayIterator The ArrayIterator is a simple implementation of the ListIterator interface (and so of the Iterator interface), iterating over arrays (of Objects).
ArrayMap Storage mechanism for key-value pairs.
Assertion The class Assertion may be used to increase the software quality by testing for pre- and postconditions in method calls.
BaseArrayMap A protected implementation of a simple storing mechanism for key-value pairs.
ClassUtilities Provides various utility methods concerning files and the class path.
ConcatIterator A Iterator, that iterates over all elements iterated by the specified iterators.
DefaultClassUtilitiesImplementation  
IndexSet The IndexSet is a Set containing Integer from 0 to size-1 of the set.
SingleIterator A simplest implementation of an Iterator, which 'iterates' over a single value.
StringUtilities A helper class with some static methods with string operations.
 

Exception Summary
AbstractNamedCheckedException A base class that implements com.dcag.s55.gool.err.NamedException and extends Exception (for checked exceptions).
AbstractNamedRuntimeException A base class that implements com.dcag.s55.gool.err.NamedException and extends RuntimeException (for runtime exceptions).
AssertException The exception that is thrown when an Assertion fails.