Package org.mantoux.util.datastructures
Class AccumTST<V>
- java.lang.Object
-
- org.mantoux.util.datastructures.AccumTST<V>
-
- Type Parameters:
V- the data type
public class AccumTST<V> extends Object
Ternary search tries that accumulates values in a list if they have the same key- Author:
- Alan Mantoux
-
-
Constructor Summary
Constructors Constructor Description AccumTST()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(String key)voiddelete(String key, V val)Set<V>get(String key)voidput(String key, V val)Collection<V>valuesWithPrefix(String prefix)
-