Uses of Interface
org.apache.ivy.plugins.matcher.PatternMatcher
-
-
Uses of PatternMatcher in org.apache.ivy
Methods in org.apache.ivy with parameters of type PatternMatcher Modifier and Type Method Description ModuleId[]
Ivy. listModules(ModuleId criteria, PatternMatcher matcher)
ModuleRevisionId[]
Ivy. listModules(ModuleRevisionId criteria, PatternMatcher matcher)
ModuleId[]
Ivy14. listModules(ModuleId criteria, PatternMatcher matcher)
ModuleRevisionId[]
Ivy14. listModules(ModuleRevisionId criteria, PatternMatcher matcher)
-
Uses of PatternMatcher in org.apache.ivy.core.cache
Methods in org.apache.ivy.core.cache that return PatternMatcher Modifier and Type Method Description PatternMatcher
DefaultResolutionCacheManager.CacheParserSettings. getMatcher(java.lang.String matcherName)
Methods in org.apache.ivy.core.cache with parameters of type PatternMatcher Modifier and Type Method Description void
DefaultRepositoryCacheManager. addTTL(java.util.Map<java.lang.String,java.lang.String> attributes, PatternMatcher matcher, long duration)
-
Uses of PatternMatcher in org.apache.ivy.core.event
Fields in org.apache.ivy.core.event declared as PatternMatcher Modifier and Type Field Description private PatternMatcher
IvyEventFilter. matcher
Constructors in org.apache.ivy.core.event with parameters of type PatternMatcher Constructor Description IvyEventFilter(java.lang.String event, java.lang.String filterExpression, PatternMatcher matcher)
-
Uses of PatternMatcher in org.apache.ivy.core.install
Methods in org.apache.ivy.core.install that return PatternMatcher Modifier and Type Method Description PatternMatcher
InstallEngineSettings. getMatcher(java.lang.String matcherName)
-
Uses of PatternMatcher in org.apache.ivy.core.module.descriptor
Fields in org.apache.ivy.core.module.descriptor declared as PatternMatcher Modifier and Type Field Description private PatternMatcher
AbstractIncludeExcludeRule. patternMatcher
Methods in org.apache.ivy.core.module.descriptor that return PatternMatcher Modifier and Type Method Description PatternMatcher
AbstractIncludeExcludeRule. getMatcher()
PatternMatcher
ExcludeRule. getMatcher()
Returns the matcher to use to know if an artifact match the current descriptorPatternMatcher
IncludeRule. getMatcher()
Returns the matcher to use to know if an artifact match the current descriptorMethods in org.apache.ivy.core.module.descriptor with parameters of type PatternMatcher Modifier and Type Method Description void
DefaultModuleDescriptor. addConflictManager(ModuleId moduleId, PatternMatcher matcher, ConflictManager manager)
regular expressions as explained in Pattern class may be used in ModuleId organisation and namevoid
DefaultModuleDescriptor. addDependencyDescriptorMediator(ModuleId moduleId, PatternMatcher matcher, DependencyDescriptorMediator ddm)
Constructors in org.apache.ivy.core.module.descriptor with parameters of type PatternMatcher Constructor Description AbstractIncludeExcludeRule(ArtifactId aid, PatternMatcher matcher, java.util.Map<java.lang.String,java.lang.String> extraAttributes)
DefaultExcludeRule(ArtifactId aid, PatternMatcher matcher, java.util.Map<java.lang.String,java.lang.String> extraAttributes)
DefaultIncludeRule(ArtifactId aid, PatternMatcher matcher, java.util.Map<java.lang.String,java.lang.String> extraAttributes)
-
Uses of PatternMatcher in org.apache.ivy.core.search
Methods in org.apache.ivy.core.search with parameters of type PatternMatcher Modifier and Type Method Description private void
SearchEngine. addMatcher(PatternMatcher patternMatcher, java.lang.String expression, java.util.Map<java.lang.String,java.lang.Object> criteria, java.lang.String key)
java.util.Collection<ModuleRevisionId>
SearchEngine. findModuleRevisionIds(DependencyResolver resolver, ModuleRevisionId pattern, PatternMatcher matcher)
ModuleId[]
SearchEngine. listModules(ModuleId moduleCrit, PatternMatcher matcher)
List module ids of the module accessible through the current resolvers matching the given mid criteria according to the given matcher.ModuleRevisionId[]
SearchEngine. listModules(ModuleRevisionId moduleCrit, PatternMatcher matcher)
List module revision ids of the module accessible through the current resolvers matching the given mrid criteria according to the given matcher.ModuleRevisionId[]
SearchEngine. listModules(DependencyResolver resolver, ModuleRevisionId moduleCrit, PatternMatcher matcher)
List modules matching a given criteria, available in the given dependency resolver. -
Uses of PatternMatcher in org.apache.ivy.core.settings
Fields in org.apache.ivy.core.settings with type parameters of type PatternMatcher Modifier and Type Field Description private java.util.Map<java.lang.String,PatternMatcher>
IvySettings. matchers
Methods in org.apache.ivy.core.settings that return PatternMatcher Modifier and Type Method Description PatternMatcher
IvySettings. getMatcher(java.lang.String name)
Methods in org.apache.ivy.core.settings with parameters of type PatternMatcher Modifier and Type Method Description void
IvySettings. addConfigured(PatternMatcher m)
void
IvySettings. addMatcher(PatternMatcher m)
void
IvySettings. addModuleConfiguration(java.util.Map<java.lang.String,java.lang.String> attributes, PatternMatcher matcher, java.lang.String resolverName, java.lang.String branch, java.lang.String conflictManager, java.lang.String resolveMode)
regular expressions as explained in Pattern class may be used in attributes -
Uses of PatternMatcher in org.apache.ivy.plugins.matcher
Classes in org.apache.ivy.plugins.matcher that implement PatternMatcher Modifier and Type Class Description class
AbstractPatternMatcher
An abstract implementation of the pattern matcher providing base template methodsclass
ExactOrRegexpPatternMatcher
A pattern matcher that tries to match exactly the input with the expression, or match it as a pattern.class
ExactPatternMatcher
Implementation of an exact matcher.class
GlobPatternMatcher
A pattern matcher matching input using unix-like glob matcher expressions.class
RegexpPatternMatcher
A pattern matcher matching input using regular expressions.Fields in org.apache.ivy.plugins.matcher declared as PatternMatcher Modifier and Type Field Description private PatternMatcher
MapMatcher. pm
Methods in org.apache.ivy.plugins.matcher that return PatternMatcher Modifier and Type Method Description PatternMatcher
MapMatcher. getPatternMatcher()
Methods in org.apache.ivy.plugins.matcher with parameters of type PatternMatcher Modifier and Type Method Description static boolean
MatcherHelper. isExact(PatternMatcher m, java.lang.String exp)
static boolean
MatcherHelper. isExact(PatternMatcher m, ModuleId exp)
static boolean
MatcherHelper. isExact(PatternMatcher m, ModuleRevisionId exp)
static boolean
MatcherHelper. matches(PatternMatcher m, java.lang.String expression, java.lang.String input)
static boolean
MatcherHelper. matches(PatternMatcher m, ArtifactId exp, ArtifactId aid)
static boolean
MatcherHelper. matches(PatternMatcher m, ModuleId exp, ModuleId mid)
static boolean
MatcherHelper. matches(PatternMatcher m, ModuleRevisionId exp, ModuleRevisionId mrid)
Constructors in org.apache.ivy.plugins.matcher with parameters of type PatternMatcher Constructor Description MapMatcher(java.util.Map<java.lang.String,java.lang.String> attributes, PatternMatcher pm)
-
Uses of PatternMatcher in org.apache.ivy.plugins.parser
Methods in org.apache.ivy.plugins.parser that return PatternMatcher Modifier and Type Method Description PatternMatcher
ParserSettings. getMatcher(java.lang.String matcherName)
-
Uses of PatternMatcher in org.apache.ivy.plugins.parser.xml
Fields in org.apache.ivy.plugins.parser.xml declared as PatternMatcher Modifier and Type Field Description private PatternMatcher
XmlModuleDescriptorParser.Parser. defaultMatcher
Methods in org.apache.ivy.plugins.parser.xml that return PatternMatcher Modifier and Type Method Description protected PatternMatcher
XmlModuleDescriptorParser.Parser. getDefaultMatcher()
protected PatternMatcher
XmlModuleDescriptorParser.Parser. getPatternMatcher(java.lang.String m)
-
Uses of PatternMatcher in org.apache.ivy.plugins.resolver
Methods in org.apache.ivy.plugins.resolver that return PatternMatcher Modifier and Type Method Description PatternMatcher
AbstractResolver.ResolverParserSettings. getMatcher(java.lang.String matcherName)
-
Uses of PatternMatcher in org.apache.ivy.plugins.trigger
Methods in org.apache.ivy.plugins.trigger that return PatternMatcher Modifier and Type Method Description private PatternMatcher
AbstractTrigger. getPatternMatcher()
-