Uses of Class
org.eclipse.jgit.errors.InvalidPatternException
Packages that use InvalidPatternException
Package
Description
High-level API commands (the porcelain of JGit).
Exceptions thrown by lower-level JGit APIs.
File name matcher.
Ignore rule parser/matcher (for .gitignore entries).
-
Uses of InvalidPatternException in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that throw InvalidPatternExceptionModifier and TypeMethodDescriptionSets one or moreglob(7)
patterns that tags must match to be considered. -
Uses of InvalidPatternException in org.eclipse.jgit.errors
Subclasses of InvalidPatternException in org.eclipse.jgit.errorsModifier and TypeClassDescriptionclass
Thrown when a pattern contains a character group which is open to the right side or a character class which is open to the right side. -
Uses of InvalidPatternException in org.eclipse.jgit.fnmatch
Methods in org.eclipse.jgit.fnmatch that throw InvalidPatternExceptionModifier and TypeMethodDescriptionFileNameMatcher.createHeadsStartValues
(String patternString, Character invalidWildgetCharacter) private static int
FileNameMatcher.findGroupEnd
(int indexOfStartBracket, String pattern) private static List<AbstractHead>
FileNameMatcher.parseHeads
(String pattern, Character invalidWildgetCharacter) Constructors in org.eclipse.jgit.fnmatch that throw InvalidPatternException -
Uses of InvalidPatternException in org.eclipse.jgit.ignore
Methods in org.eclipse.jgit.ignore that throw InvalidPatternExceptionModifier and TypeMethodDescriptionstatic IMatcher
IMatcher.createPathMatcher
(String pattern, boolean dirOnly) Creates a path matcher for the given pattern.(package private) void
-
Uses of InvalidPatternException in org.eclipse.jgit.ignore.internal
Methods in org.eclipse.jgit.ignore.internal that throw InvalidPatternExceptionModifier and TypeMethodDescription(package private) static Pattern
Strings.convertGlob
(String pattern) Conversion from glob to Java regex following two sources: http://man7.org/linux/man-pages/man7/glob.7.html org.eclipse.jgit.fnmatch.FileNameMatcher.java Seems that there are various ways to define what "glob" can be.PathMatcher.createMatchers
(List<String> segments, Character pathSeparator, boolean dirOnly) private static IMatcher
PathMatcher.createNameMatcher0
(String segment, Character pathSeparator, boolean dirOnly, boolean lastSegment) static IMatcher
PathMatcher.createPathMatcher
(String pattern, Character pathSeparator, boolean dirOnly) Create path matcherConstructors in org.eclipse.jgit.ignore.internal that throw InvalidPatternExceptionModifierConstructorDescriptionprivate
PathMatcher
(String pattern, Character pathSeparator, boolean dirOnly) (package private)
WildCardMatcher
(String pattern, Character pathSeparator, boolean dirOnly)