com.appland.appmap.process.KeyedSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.process;
import java.util.HashMap;
import java.util.HashSet;
/**
* A KeyedSet provides access to any number of HashSets by some key.
* @param The key type
* @param The set value type
*/
public class KeyedSet {
private final HashMap> data = new HashMap>();
public KeyedSet() {}
public void clear() {
data.clear();
}
/**
* Check if the set at the given key contains a particular value.
* @param key The set key
* @param val The contained value
* @return {@code true} if the set contained the value. Otherwise, {@code false}.
*/
public Boolean contains(K key, V val) {
final HashSet set = data.get(key);
if (set == null) {
return false;
}
return set.contains(val);
}
/**
* Add a value to the set at a given key.
* @param key The set key
* @param val The value to be added
* @return {@code false} if the set already contained the value. Otherwise, {@code true}.
*/
public Boolean add(K key, V val) {
HashSet set = data.get(key);
if (set == null) {
set = new HashSet();
this.data.put(key, set);
}
return set.add(val);
}
/**
* Remove a value from a set at a given key.
* @param key The set key
* @param val The value to be removed
* @return {@code true} if the value was removed from the set. Otherwise, the set did not contain
* the value and {@code false} is returned.
*/
public Boolean remove(K key, V val) {
HashSet set = data.get(key);
if (set == null) {
return false;
}
return set.remove(val);
}
}