LinkedList<MatcherContext> matcherContextList = new LinkedList<MatcherContext>();
if (this.pattern != null) {
matcherContextList.add(new MatcherContext(new WildcardMatcher(), this.pattern));
}
if (this.regexp != null) {
matcherContextList.add(new MatcherContext(new RegexpMatcher(), this.regexp));
}
if (this.equals != null) {
matcherContextList.add(new MatcherContext(new EqualsMatcher(), this.equals));
}
if (this.contains != null) {