Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shortcut (0.2 sec)

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

    this.matchers = matchers; } @Override public abstract boolean matches(Object o); @Override public abstract void describeTo(Description description); protected boolean matches(Object o, boolean shortcut) { for (Matcher<? super T> matcher : matchers) { if (matcher.matches(o) == shortcut) { return shortcut; } } return !shortcut; } public void describeTo(Description description, String operator) { description.appendList("(", " " + operator + " ", ")", matchers); } } org/hamcrest/core/StringContains.java org/h...
    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

    notNullValue() - Static method in class org.hamcrest.core.IsNull A shortcut to the frequently used not(nullValue()). notNullValue(Class<T>) - Static method in class org.hamcrest.core.IsNull A shortcut to the frequently used not(nullValue(X.class)). notNullValue() - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used not(nullValue()). notNullValue(Class<T>) - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used not(nullValue(X.class)). nullValue()...
    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