I'm looking for a structure which hashes keys without requiring a value. When queried, it should return true if the key is found and false otherwise. I'm looking for something similar to
Hashtable<MyClass, Boolean>
except insertion requires only a key and queries only ever return true or false, never null.
|
|
|
|||
|
|
|
|
You need Java's HashSet. |
||
|
|
|
|
java.util.HashSet? Using contains() for your lookup. |
||
|
|
|
|
See also the static methods |
||
|
|
