Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SelfDescribing (0.25 sec)

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

    StringDescription(java.lang.Appendable out) Method Detail toString public static java.lang.String toString(SelfDescribing selfDescribing) Return the description of a SelfDescribing object as a String. Parameters: selfDescribing - The object to be described. Returns: The description of the object. asString public static java.lang.String asString(SelfDescribing selfDescribing) Alias for toString(SelfDescribing). append protected void append(java.lang.String str) Description copied from class: BaseDescription...
    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)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    MatcherAssert { public void MatcherAssert(); public static void assertThat(Object, Matcher); public static void assertThat(String, Object, Matcher); public static void assertThat(String, boolean); } org/hamcrest/SelfDescribing.class package org.hamcrest; public abstract interface SelfDescribing { public abstract void describeTo(Description); } org/hamcrest/StringDescription.class package org.hamcrest; public synchronized class StringDescription extends BaseDescription { private final Appendable out;...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    this.out = out; } /** * Return the description of a {@link SelfDescribing} object as a String. * * @param selfDescribing * The object to be described. * @return * The description of the object. */ public static String toString(SelfDescribing selfDescribing) { return new StringDescription().appendDescriptionOf(selfDescribing).toString(); } /** * Alias for {@link #toString(SelfDescribing)}. */ public static String asString(SelfDescribing selfDescribing) { return toString(selfDescribing); } @Override protected...
    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)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Throwables$State processStackTraceEle(StackTraceElement); static void <clinit>(); } org/junit/internal/AssumptionViolatedEx.class package org.junit.internal; public synchronized class AssumptionViolatedEx extends RuntimeException implements org.hamcrest.SelfDescribing { private static final long serialVersionUID = 2; private final String fAssumption; private final boolean fValueMatcher; private final Object fValue; private final org.hamcrest.Matcher fMatcher; public void AssumptionViolatedEx(String, boolean,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top