Package org.refcodes.matcher


package org.refcodes.matcher
This artifact allows the construction of matchers for building arbitrary complex matching functionality. It is used to test whether matchee instances match certain criteria. Matcher instances may get nested in a hierarchy (using e.g. the OrMatcher, the AndMatcher or the NotMatcher types), having different matchers in combination will do custom matching. Some examples for Matcher implementations are the EqualWithMatcher, the PathMatcher,the LessThanMatcher or the RegExpMatcher. Use the MatcherSugar syntactic sugar mixin for expressively building your matchers.

Please refer to the refcodes-matcher: Build custom matching logic and match path patterns documentation for an up-to-date and detailed description on the usage of this artifact.