Uses of Interface
org.eclipse.jgit.ignore.IMatcher
-
Packages that use IMatcher Package Description org.eclipse.jgit.attributes Support for reading .gitattributes.org.eclipse.jgit.ignore Ignore rule parser/matcher (for .gitignore entries).org.eclipse.jgit.ignore.internal -
-
Uses of IMatcher in org.eclipse.jgit.attributes
Fields in org.eclipse.jgit.attributes declared as IMatcher Modifier and Type Field Description private IMatcherAttributesRule. matcher -
Uses of IMatcher in org.eclipse.jgit.ignore
Fields in org.eclipse.jgit.ignore declared as IMatcher Modifier and Type Field Description private IMatcherFastIgnoreRule. matcherstatic IMatcherIMatcher. NO_MATCHMatcher that does not match any pattern.Methods in org.eclipse.jgit.ignore that return IMatcher Modifier and Type Method Description static IMatcherIMatcher. createPathMatcher(java.lang.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 classAbstractMatcherBase class for default methods asAbstractMatcher.toString()and such.classLeadingAsteriskMatcherMatcher for simple regex patterns starting with an asterisk, e.g.classNameMatcherMatcher built from patterns for file names (single path segments).classPathMatcherMatcher built by patterns consists of multiple path segments.classTrailingAsteriskMatcherMatcher for simple patterns ending with an asterisk, e.g.classWildCardMatcherMatcher built from path segments containing wildcards.classWildMatcherWildmatch matcher for "double star" (**) pattern only.Fields in org.eclipse.jgit.ignore.internal with type parameters of type IMatcher Modifier and Type Field Description private java.util.List<IMatcher>PathMatcher. matchersMethods in org.eclipse.jgit.ignore.internal that return IMatcher Modifier and Type Method Description private static IMatcherPathMatcher. createNameMatcher0(java.lang.String segment, java.lang.Character pathSeparator, boolean dirOnly, boolean lastSegment)static IMatcherPathMatcher. createPathMatcher(java.lang.String pattern, java.lang.Character pathSeparator, boolean dirOnly)Create path matcherMethods in org.eclipse.jgit.ignore.internal that return types with arguments of type IMatcher Modifier and Type Method Description private static java.util.List<IMatcher>PathMatcher. createMatchers(java.util.List<java.lang.String> segments, java.lang.Character pathSeparator, boolean dirOnly)Methods in org.eclipse.jgit.ignore.internal with parameters of type IMatcher Modifier and Type Method Description private static booleanPathMatcher. isWild(IMatcher matcher)
-