Uses of Class
org.refcodes.matcher.AbstractMatcher
-
Uses of AbstractMatcher in org.refcodes.matcher
Subclasses of AbstractMatcher in org.refcodes.matcherModifier and TypeClassDescriptionclassTheAbstractMatcheeMatcheris composed of multipleMatcherinstances queried upon match requests as ofMatchable.isMatching(Object).classTheAbstractMatcherCompositeis composed of multipleMatcherinstances queried upon match requests as ofMatchable.isMatching(Object).classTheAbstractWildcardMatcherprovides a base functionality forMatcherimplementations.classAndMatcher<M>classAnyMatcher<M>An ANY implementation of aMatcherwhich always returnstrue.classAn EQUAL WITHMatcher, comparing its matchee with the matchee provided to theEqualWithMatcher.isMatching(Object)method for equality.classGreaterOrEqualThanMatcher<M extends Comparable<M>>A GREATER OR EQUAL THANMatcher, comparing its matchee with the matchee provided to theMatchable.isMatching(Object)method using theComparable.compareTo(Object)method to be implemented by the matchees.classGreaterThanMatcher<M extends Comparable<M>>A GREATER THANMatcher, comparing its matchee with the matchee provided to theMatchable.isMatching(Object)method using theComparable.compareTo(Object)method to be implemented by the matchees.classA IS ASSIGNABLE FROM implementation of aMatcherby type.classLessOrEqualThanMatcher<M extends Comparable<M>>A LESS OR EQUAL THANMatcher, comparing its matchee with the matchee provided to theMatchable.isMatching(Object)method using theComparable.compareTo(Object)method to be implemented by the matchees.classLessThanMatcher<M extends Comparable<M>>A LESS THANMatcher, comparing its matchee with the matchee provided to theMatchable.isMatching(Object)method using theComparable.compareTo(Object)method to be implemented by the matchees.classNoneMatcher<M>A NONE implementation of aMatcherwhich always returnsfalse.classA NOT EQUAL WITHMatcher, comparing its matchee with the matchee provided to theNotEqualWithMatcher.isMatching(Object)method for equality.classNotMatcher<M>classOrMatcher<M>classThePathMatcherprovidesWildcardMatcherfunctionality for matching paths: ThePathMatchermatches its ANT like path pattern against the path provided to thePathMatcher.isMatching(String)and the like methods.classThe REGEXPRegExpMatcherprovidesWildcardMatcherfunctionality for regular expressionPatternmatching.