Package org.apache.ivy.plugins.matcher
Class MatcherHelper
- java.lang.Object
-
- org.apache.ivy.plugins.matcher.MatcherHelper
-
public final class MatcherHelper extends java.lang.Object
Set of helper methods to match ModuleId, ModuleRevisionId, ArtifactId
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isExact(PatternMatcher m, java.lang.String exp)
static boolean
isExact(PatternMatcher m, ModuleId exp)
static boolean
isExact(PatternMatcher m, ModuleRevisionId exp)
static boolean
matches(PatternMatcher m, java.lang.String expression, java.lang.String input)
static boolean
matches(PatternMatcher m, ArtifactId exp, ArtifactId aid)
static boolean
matches(PatternMatcher m, ModuleId exp, ModuleId mid)
static boolean
matches(PatternMatcher m, ModuleRevisionId exp, ModuleRevisionId mrid)
-
-
-
Method Detail
-
matches
public static boolean matches(PatternMatcher m, java.lang.String expression, java.lang.String input)
-
matches
public static boolean matches(PatternMatcher m, ModuleId exp, ModuleId mid)
-
matches
public static boolean matches(PatternMatcher m, ModuleRevisionId exp, ModuleRevisionId mrid)
-
matches
public static boolean matches(PatternMatcher m, ArtifactId exp, ArtifactId aid)
-
isExact
public static boolean isExact(PatternMatcher m, ModuleRevisionId exp)
-
isExact
public static boolean isExact(PatternMatcher m, ModuleId exp)
-
isExact
public static boolean isExact(PatternMatcher m, java.lang.String exp)
-
-