super(str, IStringAssert.class);
this.valueClaz = String.class;
}
public IStringAssert isEqualTo(String expected, StringMode... modes) {
StringMatcher matcher = new StringEqualMatcher(expected);
matcher.setStringModes(modes);
return (IStringAssert) this.assertThat(matcher);
}