T
- public class CustomHashedHashSet<T>
extends java.util.HashSet<T>
HashSet
where entries are hashed using custom Hasher
.Constructor and Description |
---|
CustomHashedHashSet(Hasher hasher) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(T o) |
boolean |
addAll(java.util.Collection<? extends T> c) |
void |
clear() |
java.lang.Object |
clone() |
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection<?> c) |
java.util.Iterator<T> |
iterator() |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> c) |
boolean |
retainAll(java.util.Collection<?> c) |
public CustomHashedHashSet(Hasher hasher)
public boolean removeAll(java.util.Collection<?> c)
public boolean containsAll(java.util.Collection<?> c)
public boolean addAll(java.util.Collection<? extends T> c)
public boolean retainAll(java.util.Collection<?> c)
public boolean contains(java.lang.Object o)
public boolean add(T o)
public boolean remove(java.lang.Object o)
public java.util.Iterator<T> iterator()
public void clear()
public java.lang.Object clone()
clone
in class java.util.HashSet<T>