Uses of Class
org.eclipse.jgit.treewalk.filter.PathFilter
-
Packages that use PathFilter Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.treewalk.filter Filters for use in tree walking. -
-
Uses of PathFilter in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api with type parameters of type PathFilter Modifier and Type Field Description private java.util.List<PathFilter>LogCommand. pathFilters -
Uses of PathFilter in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as PathFilter Modifier and Type Field Description private PathFilterBlameGenerator. resultPath(package private) PathFilterCandidate. sourcePathPath of the candidate file inCandidate.sourceCommit.Methods in org.eclipse.jgit.blame with parameters of type PathFilter Modifier and Type Method Description (package private) CandidateCandidate. create(Repository repo, RevCommit commit, PathFilter path)(package private) CandidateCandidate.ReverseCandidate. create(Repository repo, RevCommit commit, PathFilter path)private booleanBlameGenerator. find(RevCommit commit, PathFilter path)private DiffEntryBlameGenerator. findRename(RevCommit parent, RevCommit commit, PathFilter path)Constructors in org.eclipse.jgit.blame with parameters of type PathFilter Constructor Description BlobCandidate(Repository repo, java.lang.String name, PathFilter path)Candidate(Repository repo, RevCommit commit, PathFilter path)HeadCandidate(Repository repo, PathFilter path, java.util.List<RevCommit> parents)ReverseCandidate(Repository repo, ReverseWalk.ReverseCommit commit, PathFilter path) -
Uses of PathFilter in org.eclipse.jgit.revwalk
Fields in org.eclipse.jgit.revwalk declared as PathFilter Modifier and Type Field Description private PathFilterFollowFilter. pathConstructors in org.eclipse.jgit.revwalk with parameters of type PathFilter Constructor Description FollowFilter(PathFilter path, DiffConfig cfg) -
Uses of PathFilter in org.eclipse.jgit.treewalk.filter
Fields in org.eclipse.jgit.treewalk.filter declared as PathFilter Modifier and Type Field Description private PathFilterPathFilterGroup.Single. pathMethods in org.eclipse.jgit.treewalk.filter that return PathFilter Modifier and Type Method Description PathFilterPathFilter. clone()Clone this tree filter, including its parameters.static PathFilterPathFilter. create(java.lang.String path)Create a new tree filter for a user supplied path.Methods in org.eclipse.jgit.treewalk.filter with parameters of type PathFilter Modifier and Type Method Description private static TreeFilterPathFilterGroup. create(PathFilter[] p)Method parameters in org.eclipse.jgit.treewalk.filter with type arguments of type PathFilter Modifier and Type Method Description static TreeFilterPathFilterGroup. create(java.util.Collection<PathFilter> paths)Create a collection of path filters.Constructors in org.eclipse.jgit.treewalk.filter with parameters of type PathFilter Constructor Description Group(PathFilter[] pathFilters)Single(PathFilter p)
-