matcher.setStringModes(modes);
return (IStringAssert) this.assertThat(matcher);
}
public IStringAssert start(String expected, StringMode... modes) {
StringStartWithMatcher matcher = new StringStartWithMatcher(expected);
matcher.setStringModes(modes);
return (IStringAssert) this.assertThat(matcher);
}