net.sf.beanlib.util.concurrent
Class ConcurrentSkipListMap.Values<E>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by net.sf.beanlib.util.concurrent.ConcurrentSkipListMap.Values<E>
All Implemented Interfaces:
Iterable<E>, Collection<E>
Enclosing class:
ConcurrentSkipListMap<K,V>

static final class ConcurrentSkipListMap.Values<E>
extends AbstractCollection<E>


Field Summary
private  ConcurrentNavigableMap<Object,E> m
           
 
Constructor Summary
ConcurrentSkipListMap.Values(ConcurrentNavigableMap<Object,E> map)
           
 
Method Summary
 void clear()
           
 boolean contains(Object o)
           
 boolean isEmpty()
           
 Iterator<E> iterator()
           
 int size()
           
 Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, remove, removeAll, retainAll, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Collection
equals, hashCode
 

Field Detail

m

private final ConcurrentNavigableMap<Object,E> m
Constructor Detail

ConcurrentSkipListMap.Values

ConcurrentSkipListMap.Values(ConcurrentNavigableMap<Object,E> map)
Method Detail

iterator

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

isEmpty

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

size

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

contains

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

clear

public void clear()
Specified by:
clear in interface Collection<E>
Overrides:
clear in class AbstractCollection<E>

toArray

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

toArray

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