Save This Page
Home » hibernate-distribution-3.3.1.GA-dist » org.hibernate » util » [javadoc | source]
org.hibernate.util
public class: IdentitySet [javadoc | source]
java.lang.Object
   org.hibernate.util.IdentitySet

All Implemented Interfaces:
    Set

Set implementation that use == instead of equals() as its comparison mechanism. This is achieved by internally using an IdentityHashMap.
Constructor:
 public IdentitySet() 
 public IdentitySet(int sizing) 
Method from org.hibernate.util.IdentitySet Summary:
add,   addAll,   clear,   contains,   containsAll,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.util.IdentitySet Detail:
 public boolean add(Object o) 
 public boolean addAll(Collection c) 
 public  void clear() 
 public boolean contains(Object o) 
 public boolean containsAll(Collection c) 
 public boolean isEmpty() 
 public Iterator iterator() 
 public boolean remove(Object o) 
 public boolean removeAll(Collection c) 
 public boolean retainAll(Collection c) 
 public int size() 
 public Object[] toArray() 
 public Object[] toArray(Object[] a)