vote up 3 vote down star

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.

flag

3 Answers

vote up 19 vote down

You need Java's HashSet.

link|flag
vote up 5 vote down

java.util.HashSet? Using contains() for your lookup.

link|flag
vote up 2 vote down

See also the static methods Collections#newSetFromMap that creates a set based on the given map implementation. This is eg handy to create a weak hash set.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.