Uses of Interface
org.eclipse.jgit.ignore.IMatcher
-
Packages that use IMatcher Package Description org.eclipse.jgit.ignore Ignore rule parser/matcher (for .gitignore entries).org.eclipse.jgit.ignore.internal -
-
Uses of IMatcher in org.eclipse.jgit.ignore
Fields in org.eclipse.jgit.ignore declared as IMatcher Modifier and Type Field Description static IMatcher
IMatcher. NO_MATCH
Matcher that does not match any pattern.Methods in org.eclipse.jgit.ignore that return IMatcher Modifier and Type Method Description static IMatcher
IMatcher. createPathMatcher(String pattern, boolean dirOnly)
Creates a path matcher for the given pattern. -
Uses of IMatcher in org.eclipse.jgit.ignore.internal
Classes in org.eclipse.jgit.ignore.internal that implement IMatcher Modifier and Type Class Description class
AbstractMatcher
Base class for default methods asAbstractMatcher.toString()
and such.class
LeadingAsteriskMatcher
Matcher for simple regex patterns starting with an asterisk, e.g.class
NameMatcher
Matcher built from patterns for file names (single path segments).class
PathMatcher
Matcher built by patterns consists of multiple path segments.class
TrailingAsteriskMatcher
Matcher for simple patterns ending with an asterisk, e.g.class
WildCardMatcher
Matcher built from path segments containing wildcards.class
WildMatcher
Wildmatch matcher for "double star" (**
) pattern only.Methods in org.eclipse.jgit.ignore.internal that return IMatcher Modifier and Type Method Description static IMatcher
PathMatcher. createPathMatcher(String pattern, Character pathSeparator, boolean dirOnly)
Create path matcher
-