Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for str (0.13 sec)

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

    append(separator); appendDescriptionOf(i.next()); separate = true; } append(end); return this; } /** * Append the String <var>str</var> to the description. * The default implementation passes every character to {@link #append(char)}. * Override in subclasses to provide an efficient implementation. */ protected void append(String str) { for (int i = 0; i < str.length(); i++) { append(str.charAt(i)); } } /** * Append the char <var>c</var> to the description. */ protected abstract void append(char c); private...
    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)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Summary Fields inherited from interface org.hamcrest.Description NONE Constructor Summary BaseDescription() Method Summary protected abstract void append(char c) Append the char c to the description. protected void append(java.lang.String str) Append the String str to the description. Description appendDescriptionOf(SelfDescribing value) Appends the description of a SelfDescribing value to this description. Description appendList(java.lang.String start, java.lang.String separator, java.lang.String...
    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