net.sf.molae.pipe.genimpl
Class SortedListAsSortedSet.SortedListAsSet<E>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractSet<E>
          extended by net.sf.molae.pipe.genimpl.SortedListAsSortedSet.SortedListAsSet<E>
All Implemented Interfaces:
Iterable<E>, Collection<E>, Set<E>
Enclosing class:
SortedListAsSortedSet<E>

protected static final class SortedListAsSortedSet.SortedListAsSet<E>
extends AbstractSet<E>

Sorted list backed implementation of the Set interface.


Method Summary
 boolean add(E o)
           
 void clear()
          Removes all of the elements from the base list.
 Comparator<? super E> comparator()
          Returns the comparator associated with this set, or null if it uses its elements' natural ordering.
 boolean contains(Object o)
           
protected  List<E> getList()
          Returns the backing list of this set.
 Iterator<E> iterator()
           
 boolean remove(Object o)
           
 int size()
           
 Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
 
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, isEmpty, retainAll, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Set
addAll, containsAll, isEmpty, retainAll
 

Method Detail

getList

protected final List<E> getList()
Returns the backing list of this set.

Returns:
the backing list of this set

comparator

public final Comparator<? super E> comparator()
Returns the comparator associated with this set, or null if it uses its elements' natural ordering.

Returns:
the comparator associated with this set, or null if it uses its elements' natural ordering.

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>

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>

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>

toArray

public Object[] toArray()
Specified by:
toArray in interface Collection<E>
Specified by:
toArray in interface Set<E>
Overrides:
toArray in class AbstractCollection<E>

toArray

public <T> T[] toArray(T[] a)
Specified by:
toArray in interface Collection<E>
Specified by:
toArray in interface Set<E>
Overrides:
toArray in class AbstractCollection<E>

add

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

remove

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

clear

public void clear()
Removes all of the elements from the base list.

Specified by:
clear in interface Collection<E>
Specified by:
clear in interface Set<E>
Overrides:
clear in class AbstractCollection<E>
Throws:
UnsupportedOperationException - depending on the base list