csli.util.collections
Class AggregateSet<E>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractSet<E>
          extended by csli.util.collections.AggregateSet<E>
All Implemented Interfaces:
Iterable<E>, Collection<E>, Set<E>

public class AggregateSet<E>
extends AbstractSet<E>


Constructor Summary
AggregateSet(Collection<? extends Collection<? extends E>> collections)
           
AggregateSet(Collection<? extends E>... collections)
           
 
Method Summary
 boolean contains(Object o)
           
 Iterator<E> iterator()
           
static void main(String[] args)
           
 int size()
           
 
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
 
Methods inherited from class java.util.AbstractCollection
add, addAll, clear, containsAll, isEmpty, remove, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Set
add, addAll, clear, containsAll, isEmpty, remove, retainAll, toArray, toArray
 

Constructor Detail

AggregateSet

public AggregateSet(Collection<? extends E>... collections)

AggregateSet

public AggregateSet(Collection<? extends Collection<? extends E>> collections)
Method Detail

size

public int size()
Specified by:
size in interface Collection<E>
Specified by:
size in interface Set<E>
Specified by:
size in class AbstractCollection<E>

iterator

public Iterator<E> iterator()
Specified by:
iterator in interface Iterable<E>
Specified by:
iterator in interface Collection<E>
Specified by:
iterator in interface Set<E>
Specified by:
iterator in class AbstractCollection<E>

contains

public boolean contains(Object o)
Specified by:
contains in interface Collection<E>
Specified by:
contains in interface Set<E>
Overrides:
contains in class AbstractCollection<E>

main

public static void main(String[] args)