Uses of Interface
com.taco.data.ICollectionFactory

Packages that use ICollectionFactory
com.taco.data   
 

Uses of ICollectionFactory in com.taco.data
 

Fields in com.taco.data declared as ICollectionFactory
static ICollectionFactory ICollectionFactory.ARRAY_LIST_FACTORY
          A factory that creates instances of ArrayList.
static ICollectionFactory ICollectionFactory.HASH_SET_FACTORY
          A factory that creates instances of HashSet.
static ICollectionFactory ICollectionFactory.LINKED_HASH_SET_FACTORY
          A factory that creates instances of LinkedHashSet.
static ICollectionFactory ICollectionFactory.LINKED_LIST_FACTORY
          A factory that creates instances of LinkedList.
static ICollectionFactory ListSet.LIST_SET_FACTORY
          A factory that creates instances of ListSet.
static ICollectionFactory ListToVectorAdapter.LIST_TO_VECTOR_ADAPTER_FACTORY
          A collection factory that creates instances of this class.
static ICollectionFactory ICollectionFactory.TREE_SET_FACTORY
          A factory that creates instances of TreeSet.
static ICollectionFactory ICollectionFactory.VECTOR_FACTORY
          A factory that creates instances of Vector.
 

Methods in com.taco.data with parameters of type ICollectionFactory
static boolean MapUtilities.addAllToMappedCollection(java.util.Map map, java.lang.Object key, java.util.Collection values, ICollectionFactory factory)
          If key is already mapped to a collection, add the elements of values to the collection.
static boolean MapUtilities.addToMappedCollection(java.util.Map map, java.lang.Object key, java.lang.Object value, ICollectionFactory factory)
          If key is already mapped to a collection, add value to the collection.
static java.util.Collection ArrayUtilities.fromMatrix(java.lang.Object[][] matrix, ICollectionFactory factory, boolean mustCopy)
          Return a collection of collections representing the matrix.