public abstract class AndTreeFilter extends TreeFilter
Classic shortcut behavior is used, so evaluation of the
TreeFilter.include(TreeWalk)
method stops as soon as a false result
is obtained. Applications can improve filtering performance by placing faster
filters that are more likely to reject a result earlier in the list.
ALL, ANY_DIFF
Constructor and Description |
---|
AndTreeFilter() |
Modifier and Type | Method and Description |
---|---|
static TreeFilter |
create(Collection<TreeFilter> list)
Create a filter around many filters, all of which must match.
|
static TreeFilter |
create(TreeFilter[] list)
Create a filter around many filters, all of which must match.
|
static TreeFilter |
create(TreeFilter a,
TreeFilter b)
Create a filter with two filters, both of which must match.
|
clone, include, negate, shouldBeRecursive, toString
public static TreeFilter create(TreeFilter a, TreeFilter b)
a
- first filter to test.b
- second filter to test.public static TreeFilter create(TreeFilter[] list)
list
- list of filters to match against. Must contain at least 2
filters.public static TreeFilter create(Collection<TreeFilter> list)
list
- list of filters to match against. Must contain at least 2
filters.Copyright © 2015 Eclipse JGit Project. All rights reserved.