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