Methods in org.j3d.util with parameters of type HashSet |
boolean |
HashSet.addAll(HashSet hs)
Adds all of the elements in the specified hash set to this set. |
boolean |
HashSet.removeAll(HashSet hs)
Removes from this collection all of its elements that are contained in
the specified hash set. |
void |
HashSet.retainAll(HashSet set)
Retain everything that is in the given set, in this set. |
void |
HashSet.retainAll(HashSet set,
HashSet diff)
Retain everything that is in the given set, in this set, and move
anything that is not, into the alternate set. |