Package container

Basic classes and interfaces that are useful for all containers (i.e., data structures meant to contain other objects).

See:
          Description

Interface Summary
Decorable In addition to storing its usual data, a class might allow users to "decorate" it with some extra temporary data.
Entry Interface for a key-value pair entry
EqualityTester Used to compare keys for equality, just as java.util.Comparator compares them for order.
Position  
 

Class Summary
Attribute An attribute of a Decorable object, such as a graph vertex.
HashDecorable This class should typically be extended so that it implements other interfaces besides Decorable.
 

Exception Summary
BoundaryViolationException  
InvalidEntryException Runtime exception thrown when someone tries to modify/remove an entry in an adaptable data structure.
InvalidKeyException Runtime exception thrown when someone tries to add a (key,element) entry to a sorted collection that doesn't know how to sort this key.
InvalidPositionException  
 

Package container Description

Basic classes and interfaces that are useful for all containers (i.e., data structures meant to contain other objects).