org.objectweb.jac.lib.java.util
Class HashSet

java.lang.Object
  extended byjava.util.AbstractCollection
      extended byjava.util.AbstractSet
          extended byjava.util.HashSet
              extended byorg.objectweb.jac.lib.java.util.HashSet
All Implemented Interfaces:
Cloneable, Collection, Serializable, Set

public class HashSet
extends HashSet

See Also:
Serialized Form

Constructor Summary
HashSet()
           
 
Method Summary
 boolean add(Object p0)
           
 boolean addAll(Collection p0)
           
 void clear()
           
 Object clone()
           
 boolean contains(Object p0)
           
 boolean containsAll(Collection p0)
           
 boolean equals(Object o)
           
 int hashCode()
           
 boolean isEmpty()
           
 Iterator iterator()
           
 boolean remove(Object p0)
           
 boolean removeAll(Collection p0)
           
 boolean retainAll(Collection p0)
           
 int size()
           
 Object[] toArray()
           
 Object[] toArray(Object[] p0)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HashSet

public HashSet()
Method Detail

clone

public Object clone()

add

public boolean add(Object p0)

contains

public boolean contains(Object p0)

size

public int size()

iterator

public Iterator iterator()

remove

public boolean remove(Object p0)

clear

public void clear()

isEmpty

public boolean isEmpty()

removeAll

public boolean removeAll(Collection p0)

addAll

public boolean addAll(Collection p0)

toArray

public Object[] toArray()

toArray

public Object[] toArray(Object[] p0)

containsAll

public boolean containsAll(Collection p0)

retainAll

public boolean retainAll(Collection p0)

equals

public boolean equals(Object o)

hashCode

public int hashCode()

toString

public String toString()