java.util
Class LinkedHashSet

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractSet
              |
              +--java.util.HashSet
                    |
                    +--java.util.LinkedHashSet
All Implemented Interfaces:
Cloneable, Collection, Serializable, Set

public synchronized class LinkedHashSet
extends HashSet
implements Set, Cloneable, Serializable

See Also:
Serialized Form

Constructor Summary
LinkedHashSet()
           
LinkedHashSet(Collection)
           
LinkedHashSet(int)
           
LinkedHashSet(int, float)
           
 
Methods inherited from class java.util.HashSet
add, clear, clone, contains, isEmpty, iterator, remove, size
 
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
 
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait
 
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Constructor Detail

LinkedHashSet

public LinkedHashSet(int,
                     float)

LinkedHashSet

public LinkedHashSet(int)

LinkedHashSet

public LinkedHashSet()

LinkedHashSet

public LinkedHashSet(Collection)