Uses of Class
org.omnaest.utils.structure.collection.CollectionAbstract

Packages that use CollectionAbstract
org.omnaest.utils.store   
org.omnaest.utils.structure.array   
org.omnaest.utils.structure.collection   
org.omnaest.utils.structure.collection.adapter   
org.omnaest.utils.structure.collection.list   
org.omnaest.utils.structure.collection.list.adapter   
org.omnaest.utils.structure.collection.list.sorted   
org.omnaest.utils.structure.collection.set   
org.omnaest.utils.structure.collection.set.adapter   
 

Uses of CollectionAbstract in org.omnaest.utils.store
 

Subclasses of CollectionAbstract in org.omnaest.utils.store
 class NestedDirectoryToByteArrayContainerListAdapter
          Adapter which takes a nested directory structure and allows to access it as a List of ByteArrayContainers
 

Uses of CollectionAbstract in org.omnaest.utils.structure.array
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.array
 class ArrayToListAdapter<E>
          Adapter to use an Array instance as List.
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection
 class CollectionComposite<E>
          Composite Collection consisting of multiple given Collection instances of the same type

The CollectionComposite.add(Object) method will add new elements to the Collection with the smallest size.
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.adapter
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.adapter
 class CollectionToCollectionAdapter<FROM,TO>
          Adapter from one Collection with its specific type to an underlying Collection with another specific type using an ElementBidirectionalConverter instance to translate forth and back in types.
 class CollectionToCollectionAdapterBase<FROM,TO>
          Base implementation of an CollectionToCollectionAdapter
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.list
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.list
 class IdentityArrayList<E>
          Uses the "object == element" comparison instead of the equals comparison for methods navigating to the elements from the List by given element instances.
 class ListAbstract<E>
          This abstract list implementation offers the basic methods like addAll, removeAll, retainAll, etc. which rely only on other list methods and not on any underlying structure.
protected static class ListAbstract.ListAbstractSublist<E>
          Sublist implementation for the ListAbstract including the ListAbstract.ListAbstractSublist.fromIndex and excluding the ListAbstract.ListAbstractSublist.toIndex
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.list.adapter
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.list.adapter
 class ListToListAdapter<FROM,TO>
          Adapter which allows a given List with a specific type to be used as a List with another specific type using a ElementBidirectionalConverter
 class ListToSetAdapter<E>
          Defines a Set operating on a given List.
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.list.sorted
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.list.sorted
 class InsertionSortedList<E>
          SortedList implementation using insertion sort algorithm based on a simple ArrayList
 class SortedListAbstract<E>
          Abstract implementation of a SortedList which reduces the need to implement all methods
protected static class SortedListAbstract.SortedListAbstractSublist<E>
          Sublist implementation for SortedListAbstract
 class TreeList<E>
          This sorted List implementation does use an internal TreeMap to provide all features a SortedSet has, except the fact that duplicate elements are allowed.
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.set
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.set
 class IdentityArrayListBasedSet<E>
          Ordered Set implementation using the IdentityArrayList as backing structure.
 class SetAbstract<E>
          Abstract implementation of a Set.
 class SetComposite<E>
          Composite Set consisting of multiple given Set instances of the same type

The SetComposite.add(Object) method will add new elements to the Set with the smallest size.
 

Uses of CollectionAbstract in org.omnaest.utils.structure.collection.set.adapter
 

Subclasses of CollectionAbstract in org.omnaest.utils.structure.collection.set.adapter
 class MapBasedSet<E>
          A Set based on a given Map implementation
 class SetToSetAdapter<FROM,TO>
          Adapter from one Set with a specific type to another Set with another specific type using a ElementBidirectionalConverter
 



Copyright © 2013. All Rights Reserved.