Package org.apache.commons.collections4
Class TrieUtils
- java.lang.Object
-
- org.apache.commons.collections4.TrieUtils
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
Trie<K,V>unmodifiableTrie(Trie<K,? extends V> trie)
Returns an unmodifiable instance of aTrie
-
-
-
Method Detail
-
unmodifiableTrie
public static <K,V> Trie<K,V> unmodifiableTrie(Trie<K,? extends V> trie)
Returns an unmodifiable instance of aTrie
- Type Parameters:
K
- the key typeV
- the value type- Parameters:
trie
- the trie to make unmodifiable, must not be null- Returns:
- an unmodifiable trie backed by the given trie
- Throws:
NullPointerException
- if trie is null- See Also:
Collections.unmodifiableMap(java.util.Map)
-
-