}
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) {
matcherContextList.add(new MatcherContext(new ContainsMatcher(), this.contains));
}
if (this.wildcard != null) {