Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for endswith (0.3 sec)

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

    notNullValue(); public static Matcher notNullValue(Class); public static Matcher sameInstance(Object); public static Matcher theInstance(Object); public static Matcher containsString(String); public static Matcher startsWith(String); public static Matcher endsWith(String); } org/hamcrest/CustomMatcher.class package org.hamcrest; public abstract synchronized class CustomMatcher extends BaseMatcher { private final String fixedDescription; public void CustomMatcher(String); public final void describeTo(Description);...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    {@link String} ends with the specified * {@link String}. * <p/> * For example: * <pre>assertThat("myStringOfNote", endsWith("Note"))</pre> * * @param suffix * the substring that the returned matcher will expect at the end of any examined string */ public static org.hamcrest.Matcher<java.lang.String> endsWith(java.lang.String suffix) { return org.hamcrest.core.StringEndsWith.endsWith(suffix); } } org/hamcrest/CustomMatcher.java org/hamcrest/CustomMatcher.java package org.hamcrest; /** * Utility class...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    assertThat("myStringOfNote", startsWith("my")) Parameters: prefix - the substring that the returned matcher will expect at the start of any examined string endsWith public static Matcher<java.lang.String> endsWith(java.lang.String suffix) Creates a matcher that matches if the examined String ends with the specified String. For example: assertThat("myStringOfNote", endsWith("Note")) Parameters: suffix - the substring that the returned matcher will expect at the end of any examined string Overview Package Class Use...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
Back to top