Uses of Class
org.eclipse.jgit.errors.InvalidPatternException
-
Packages that use InvalidPatternException Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.errors Exceptions thrown by lower-level JGit APIs.org.eclipse.jgit.fnmatch File name matcher.org.eclipse.jgit.ignore Ignore rule parser/matcher (for .gitignore entries).org.eclipse.jgit.ignore.internal -
-
Uses of InvalidPatternException in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that throw InvalidPatternException Modifier and Type Method Description DescribeCommand
DescribeCommand. setMatch(java.lang.String... patterns)
Sets 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.errors Modifier and Type Class Description class
NoClosingBracketException
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 InvalidPatternException Modifier and Type Method Description private static java.util.List<Head>
FileNameMatcher. createHeadsStartValues(java.lang.String patternString, java.lang.Character invalidWildgetCharacter)
private static int
FileNameMatcher. findGroupEnd(int indexOfStartBracket, java.lang.String pattern)
private static java.util.List<AbstractHead>
FileNameMatcher. parseHeads(java.lang.String pattern, java.lang.Character invalidWildgetCharacter)
Constructors in org.eclipse.jgit.fnmatch that throw InvalidPatternException Constructor Description FileNameMatcher(java.lang.String patternString, java.lang.Character invalidWildgetCharacter)
Constructor for FileNameMatcherGroupHead(java.lang.String pattern, java.lang.String wholePattern)
-
Uses of InvalidPatternException in org.eclipse.jgit.ignore
Methods in org.eclipse.jgit.ignore that throw InvalidPatternException Modifier and Type Method Description static IMatcher
IMatcher. createPathMatcher(java.lang.String pattern, boolean dirOnly)
Creates a path matcher for the given pattern.(package private) void
FastIgnoreRule. parse(java.lang.String pattern)
-
Uses of InvalidPatternException in org.eclipse.jgit.ignore.internal
Methods in org.eclipse.jgit.ignore.internal that throw InvalidPatternException Modifier and Type Method Description (package private) static java.util.regex.Pattern
Strings. convertGlob(java.lang.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.private static java.util.List<IMatcher>
PathMatcher. createMatchers(java.util.List<java.lang.String> segments, java.lang.Character pathSeparator, boolean dirOnly)
private static IMatcher
PathMatcher. createNameMatcher0(java.lang.String segment, java.lang.Character pathSeparator, boolean dirOnly, boolean lastSegment)
static IMatcher
PathMatcher. createPathMatcher(java.lang.String pattern, java.lang.Character pathSeparator, boolean dirOnly)
Create path matcherConstructors in org.eclipse.jgit.ignore.internal that throw InvalidPatternException Constructor Description PathMatcher(java.lang.String pattern, java.lang.Character pathSeparator, boolean dirOnly)
WildCardMatcher(java.lang.String pattern, java.lang.Character pathSeparator, boolean dirOnly)
-