Class RevFlagFilter
java.lang.Object
org.eclipse.jgit.revwalk.filter.RevFilter
org.eclipse.jgit.revwalk.filter.RevFlagFilter
Matches only commits with some/all RevFlags already set.
-
Field Summary
Fields inherited from class RevFilter
ALL, MERGE_BASE, NO_MERGES, NONE, ONLY_MERGES -
Method Summary
Modifier and TypeMethodDescriptionclone()static RevFilterCreate a new filter that tests for a single flag.static RevFilterCreate a new filter that tests all flags in a set.static RevFilterhasAll(RevFlagSet a) Create a new filter that tests all flags in a set.static RevFilterCreate a new filter that tests for any flag in a set.static RevFilterhasAny(RevFlagSet a) Create a new filter that tests for any flag in a set.toString()Methods inherited from class RevFilter
include, negate, requiresCommitBody
-
Method Details
-
has
-
hasAll
-
hasAll
Create a new filter that tests all flags in a set.- Parameters:
a- set of flags to test.- Returns:
- filter that selects only commits with all flags in
a.
-
hasAny
-
hasAny
Create a new filter that tests for any flag in a set.- Parameters:
a- set of flags to test.- Returns:
- filter that selects only commits with any flag in
a.
-
clone
-
toString
-