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 PathFilter
BlameGenerator. resultPath
(package private) PathFilter
Candidate. sourcePath
Path of the candidate file inCandidate.sourceCommit
.Methods in org.eclipse.jgit.blame with parameters of type PathFilter Modifier and Type Method Description (package private) Candidate
Candidate. create(Repository repo, RevCommit commit, PathFilter path)
(package private) Candidate
Candidate.ReverseCandidate. create(Repository repo, RevCommit commit, PathFilter path)
private boolean
BlameGenerator. find(RevCommit commit, PathFilter path)
private DiffEntry
BlameGenerator. 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 PathFilter
FollowFilter. path
Constructors 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 PathFilter
PathFilterGroup.Single. path
Methods in org.eclipse.jgit.treewalk.filter that return PathFilter Modifier and Type Method Description PathFilter
PathFilter. clone()
Clone this tree filter, including its parameters.static PathFilter
PathFilter. 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 TreeFilter
PathFilterGroup. create(PathFilter[] p)
Method parameters in org.eclipse.jgit.treewalk.filter with type arguments of type PathFilter Modifier and Type Method Description static TreeFilter
PathFilterGroup. 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)
-