KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > LinkedHashSet

java.util
Class LinkedHashSet<E>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractSet<E>
          extended by java.util.HashSet<E>
              extended by java.util.LinkedHashSet<E>
All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, Set<E>
See Also:
Top Examples, Source Code, Object.hashCode(), TreeSet, Hashtable

public LinkedHashSet()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public LinkedHashSet(int initialCapacity)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public LinkedHashSet(int initialCapacity,
                     float loadFactor)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public LinkedHashSet(Collection<? extends E> c)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags