public class SubstringMap<V> extends Object
This class uses linear probing and is thread safe due to copy on write semantics. As such it is not recomended for data that changes frequently.
This class does not actually implement the map interface to avoid implementing unnecessary operations.
Modifier and Type | Class and Description |
---|---|
static class |
SubstringMap.SubstringMatch<V> |
Constructor and Description |
---|
SubstringMap() |
public SubstringMap.SubstringMatch<V> get(String key, int length)
public SubstringMap.SubstringMatch<V> get(String key)
public void clear()
Copyright © 2016. All rights reserved.