Uses of Interface
net.walend.collection.Collection

Packages that use Collection
net.walend.collection This package contains a collection kit. 
net.walend.collection.lyophil This package contains Freezable implementations of collections. 
net.walend.collection.lyophil.jdbc This package contains a kit for storing the net.walend.collection classes inside a database. 
net.walend.lyophil.collection This package contains a persistent collection kit based on Lyophilizer. 
net.walend.lyophil.memory This package contains an implementation of lyophil that runs inside a jvm's memory. 
net.walend.lyophil.soft This package contains an implementation of Freezer that caches Freezables inside a SoftHashMap after they are called out of an authoritive Freezer. 
 

Uses of Collection in net.walend.collection
 

Subinterfaces of Collection in net.walend.collection
 interface List
          An ordered Collection that gives the programmer precise control over where Objects in the list exit.
 interface MutableCollection
          Use this interface for changable Collections of Objects.
 interface MutableList
           add() appends the object to the end of the list.
 interface MutableSet
          This class is a Collection that contains Objects so that each Object exists at most once in the set.
 interface Set
          This class is a Collection that contains Objects so that no more than one of each Object exists in the Set.
 

Classes in net.walend.collection that implement Collection
 class AbstractArrayList
          An implementation of List backed by an array.
 class AbstractHashSet
          This class implements the net.walend.collection.Set interface, based very heavily on the java.util.HashSet class by Josh Bloch.
 class ArrayList
          This implementation of List is built on top of an array.
 class HashSet
          This implementation of Set is built on top of a Map.
 class MutableArrayList
           add() appends the object to the end of the list.
 class MutableHashSet
           
 

Uses of Collection in net.walend.collection.lyophil
 

Subinterfaces of Collection in net.walend.collection.lyophil
 interface FreezableSet
          This interface describes a Freezable MutableSet.
 

Classes in net.walend.collection.lyophil that implement Collection
 class FreezableDelegatingMutableSet
          This class extends the DelegatingMutableSet to implement FreezableSet.
 

Uses of Collection in net.walend.collection.lyophil.jdbc
 

Classes in net.walend.collection.lyophil.jdbc that implement Collection
 class JDBCBackedMutableSet
          This class implements FreezableSet directly on top of a database table.
 

Uses of Collection in net.walend.lyophil.collection
 

Subinterfaces of Collection in net.walend.lyophil.collection
 interface CollectionOfFreezables
          This interface supplements the net.walend.collection.Collection interface.
 interface MutableCollectionOfFreezables
          Use this interface for changable CollectionOfFreezables.
 interface MutableSetOfFreezables
          This class is a Collection that contains Freezables so that no two Freezables in the Collection have the same identifier.
 interface SetOfFreezables
          This class is a Collection that contains Freezables so that no two Freezables in the Collection have the same identifier.
 

Classes in net.walend.lyophil.collection that implement Collection
 class AbstractFreezerHashSet
          This class implements the net.walend.collection.SetOfFreezables interface, but instead of storing whole Freezables in the set, it stores a Set of identifiers.
 class AbstractHashSetOfFreezables
          An abstract HashSet that includes special methods for handling Freezables.
 class DelegatingMutableSet
          This abstract class implements MutableSet by delegating all methods to a contained MutableSet.
 class FreezerHashSet
           
 class HashSetOfFreezables
           
 class MutableFreezerHashSet
           
 class MutableHashSetOfFreezables
           
 

Uses of Collection in net.walend.lyophil.memory
 

Classes in net.walend.lyophil.memory that implement Collection
 class MemSet
          This class implements a Set of Freezables built on top of a HashSet that points from identifiers to Freezables.
 

Uses of Collection in net.walend.lyophil.soft
 

Classes in net.walend.lyophil.soft that implement Collection
 class SoftMemSet
          This class implements MutableSetOfFreezables on top of a SoftHashMap.
 



Copyright (c) 2000, 2001, David Walend