Package | Description |
---|---|
alluxio.conf.path |
Modifier and Type | Method and Description |
---|---|
TrieNode<V> |
TrieNode.deleteIf(String path,
java.util.function.Function<TrieNode<V>,Boolean> predicate)
Deletes the path from the Trie if the given predicate is true.
|
TrieNode<V> |
TrieNode.insert(String path)
Inserts a path into the trie.
|
Modifier and Type | Method and Description |
---|---|
Iterator<TrieNode<V>> |
TrieNode.getCommonRoots() |
java.util.stream.Stream<TrieNode<V>> |
TrieNode.getLeafChildren(String path)
Get the terminal children of path (including path).
|
List<TrieNode<V>> |
TrieNode.search(String path)
Traverses the trie along the path components until the traversal cannot proceed any more.
|
Optional<TrieNode<V>> |
TrieNode.searchExact(String path)
Find terminal component of the full path if one exists.
|
Modifier and Type | Method and Description |
---|---|
TrieNode<V> |
TrieNode.deleteIf(String path,
java.util.function.Function<TrieNode<V>,Boolean> predicate)
Deletes the path from the Trie if the given predicate is true.
|
Copyright © 2023. All Rights Reserved.