Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Starling (0.33 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    StringStartsWith extends SubstringMatcher { public StringStartsWith(String substring) { super(substring); } @Override protected boolean evalSubstringOf(String s) { return s.startsWith(substring); } @Override protected String relationship() { return "starting with"; } /** * Creates a matcher that matches if the examined {@link String} starts with the specified * {@link String}. * <p/> * For example: * <pre>assertThat("myStringOfNote", startsWith("my"))</pre> * * @param prefix * the substring that the...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top