30313233343536
public class StartsWithTestCase extends ValueComparatorTestCaseAbstract { // Javadoc inherited. protected ValueConstraint createConstraint(String value) { return new StartsWith(value); }
173174175176177178179
public ValueConstraint createEndsWithConstraint(String value) { return new EndsWith(value); } public ValueConstraint createStartsWithConstraint(String value) { return new StartsWith(value); }