static <T extends PathNode<T>> T |
PathNodeUtils.createFromParentPath(T parent,
Iterable<String> pathParts) |
|
static <T extends PathNode<T>> T |
PathNodeUtils.getChild(T node,
String childName) |
|
static <T extends PathNode<T>> Collection<T> |
AntPatternTreeMatcher.scan(T node,
Collection<String> includeRules,
Collection<String> excludeRules,
AntPatternTreeMatcher.ScanOption... options) |
Searches for necessary elements within the tree node using supplied collections of include and exclude rules.
Exclude rules are applied first.
|
static <T extends PathNode<T>> Collection<T> |
AntPatternTreeMatcher.scan(T node,
Collection<String> mixedRules,
AntPatternTreeMatcher.ScanOption... options) |
Searches for necessary elements within the tree node using supplied collection of search rules.
|
static <T extends PathNode<T>> Collection<T> |
AntPatternTreeMatcher.scanWithCallback(T node,
Collection<String> mixedRules,
AntPatternTreeMatcher.SearchCallback<T> callback,
AntPatternTreeMatcher.ScanOption... options) |
Searches for necessary elements within the tree node using supplied collection of search rules.
|