Uses of Interface
org.jjoost.collections.AnyReadSet

Packages that use AnyReadSet
org.jjoost.collections   
org.jjoost.collections.sets.base   
org.jjoost.collections.sets.concurrent   
org.jjoost.collections.sets.serial   
org.jjoost.collections.sets.wrappers   
 

Uses of AnyReadSet in org.jjoost.collections
 

Subinterfaces of AnyReadSet in org.jjoost.collections
 interface AnySet<V>
           This interface is the common ancestor of all modifiable Jjoost sets.
 interface MultiSet<V>
          This interface declares a set that supports multiple occurrences of each value
 interface Set<V>
           This interface declares that a set supports precisely one occurence of each value
 interface UnitarySet<V>
          This interface represents the rather dubious concept of a set that may contain at most one item.
 

Methods in org.jjoost.collections that return AnyReadSet
 AnyReadSet<? extends java.util.Map.Entry<K,V>> AnyReadMap.entries()
          Returns a set representing all the key->value pairs in this map.
 AnyReadSet<K> AnyReadMap.keys()
          Returns a set representing all the keys in the domain of this map.
 AnyReadSet<V> AnyReadMap.values()
          Returns a set representing the range of the map.
 AnyReadSet<V> AnyReadMap.values(K key)
          Returns a set representing the values associated with the provided key in this map.
 

Uses of AnyReadSet in org.jjoost.collections.sets.base
 

Classes in org.jjoost.collections.sets.base that implement AnyReadSet
 class AbstractArraySet<V>
           
 class AbstractHashSet<V,N extends HashNode<N> & Value<V>>
           
 class AbstractSet<V>
           
 class AbstractUniqueSetAdapter<V>
           
 class HashSet<V,N extends HashNode<N> & Value<V>>
           
 class InlineMultiHashSet<V,N extends HashNode<N> & Value<V>>
           
 class IterableSet<V>
           
 class NestedMultiHashSet<V,N extends HashNode<N> & NestedMultiHashSet.INode<V,N>>
           
 

Uses of AnyReadSet in org.jjoost.collections.sets.concurrent
 

Classes in org.jjoost.collections.sets.concurrent that implement AnyReadSet
 class LockFreeCountingMultiHashSet<V>
           
 class LockFreeHashSet<V>
           
 class LockFreeInlineMultiHashSet<V>
           
 class LockFreeLinkedCountingMultiHashSet<V>
           
 class LockFreeLinkedInlineMultiHashSet<V>
           
 class LockFreeLinkedNestedMultiHashSet<V>
           
 class LockFreeLinkedScalarHashSet<V>
           
 class LockFreeNestedMultiHashSet<V>
           
 

Uses of AnyReadSet in org.jjoost.collections.sets.serial
 

Classes in org.jjoost.collections.sets.serial that implement AnyReadSet
 class ArraySet<V>
           
 class MultiArraySet<V>
           
 class SerialCountingMultiHashSet<V>
           
 class SerialHashSet<V>
           
 class SerialInlineMultiHashSet<V>
           
 class SerialLinkedCountingMultiHashSet<V>
           
 class SerialLinkedHashSet<V>
           
 class SerialLinkedInlineMultiHashSet<V>
           
 class SerialLinkedNestedMultiHashSet<V>
           
 class SerialNestedMultiHashSet<V>
           
 

Uses of AnyReadSet in org.jjoost.collections.sets.wrappers
 

Classes in org.jjoost.collections.sets.wrappers that implement AnyReadSet
 class AdapterFromJDKSet<V>
           
 class SynchronizedArbitrarySet<V,S extends AnySet<V>>
           
 class SynchronizedMultiSet<V>
           
 class SynchronizedSet<V>