Uses of Interface
org.eclipse.jgit.fnmatch.Head
-
Packages that use Head Package Description org.eclipse.jgit.fnmatch File name matcher. -
-
Uses of Head in org.eclipse.jgit.fnmatch
Classes in org.eclipse.jgit.fnmatch that implement Head Modifier and Type Class Description (package private) class
AbstractHead
(package private) class
CharacterHead
(package private) class
GroupHead
(package private) class
LastHead
(package private) class
RestrictedWildCardHead
(package private) class
WildCardHead
Fields in org.eclipse.jgit.fnmatch declared as Head Modifier and Type Field Description (package private) static Head
LastHead. INSTANCE
Fields in org.eclipse.jgit.fnmatch with type parameters of type Head Modifier and Type Field Description (package private) static java.util.List<Head>
FileNameMatcher. EMPTY_HEAD_LIST
private java.util.List<Head>
FileNameMatcher. heads
private java.util.List<Head>
FileNameMatcher. headsStartValue
private java.util.List<Head>
FileNameMatcher. listForLocalUseage
{FileNameMatcher.extendStringToMatchByOneCharacter(char)
needs a list for the new heads, allocating a new array would be bad for the performance, as the method gets called very often.private java.util.List<Head>
AbstractHead. newHeads
Methods in org.eclipse.jgit.fnmatch that return types with arguments of type Head Modifier and Type Method Description private static java.util.List<Head>
FileNameMatcher. createHeadsStartValues(java.lang.String patternString, java.lang.Character invalidWildgetCharacter)
java.util.List<Head>
AbstractHead. getNextHeads(char c)
Get the character which decides which heads are returnedjava.util.List<Head>
Head. getNextHeads(char c)
Get the character which decides which heads are returnedjava.util.List<Head>
LastHead. getNextHeads(char c)
Get the character which decides which heads are returnedMethod parameters in org.eclipse.jgit.fnmatch with type arguments of type Head Modifier and Type Method Description void
AbstractHead. setNewHeads(java.util.List<Head> newHeads)
SetHead
s which will not be modified.Constructor parameters in org.eclipse.jgit.fnmatch with type arguments of type Head Constructor Description FileNameMatcher(java.util.List<Head> headsStartValue)
FileNameMatcher(java.util.List<Head> headsStartValue, java.util.List<Head> heads)
-