Package org.eclipse.jgit.ignore.internal
Class TrailingAsteriskMatcher
java.lang.Object
org.eclipse.jgit.ignore.internal.AbstractMatcher
org.eclipse.jgit.ignore.internal.NameMatcher
org.eclipse.jgit.ignore.internal.TrailingAsteriskMatcher
- All Implemented Interfaces:
IMatcher
Matcher for simple patterns ending with an asterisk, e.g. "Makefile.*"
-
Field Summary
Fields inherited from class org.eclipse.jgit.ignore.internal.NameMatcher
beginning, slash, subPattern
Fields inherited from class org.eclipse.jgit.ignore.internal.AbstractMatcher
dirOnly, pattern
-
Constructor Summary
ConstructorsConstructorDescriptionTrailingAsteriskMatcher
(String pattern, Character pathSeparator, boolean dirOnly) -
Method Summary
Methods inherited from class org.eclipse.jgit.ignore.internal.NameMatcher
matches
Methods inherited from class org.eclipse.jgit.ignore.internal.AbstractMatcher
equals, hashCode, toString
-
Constructor Details
-
TrailingAsteriskMatcher
-
-
Method Details
-
matches
Matches only part of given string- Specified by:
matches
in interfaceIMatcher
- Overrides:
matches
in classNameMatcher
- Parameters:
segment
- string which is not null, but might be emptystartIncl
- start index, inclusiveendExcl
- end index, exclusive- Returns:
- true if this matcher pattern matches given string
-