Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Garnier (0.17 sec)

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

    org.hamcrest.Factory; import org.hamcrest.Matcher; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Calculates the logical conjunction of multiple matchers. Evaluation is shortcut, so * subsequent matchers are not called if an earlier matcher returns <code>false</code>. */ public class AllOf<T> extends DiagnosingMatcher<T> { private final Iterable<Matcher<? super T>> matchers; public AllOf(Iterable<Matcher<? super T>> matchers) { this.matchers = matchers; } @Override public boolean...
    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

    org.hamcrest.core.AllOf<T> All Implemented Interfaces: Matcher<T>, SelfDescribing public class AllOf<T> extends DiagnosingMatcher<T> Calculates the logical conjunction of multiple matchers. Evaluation is shortcut, so subsequent matchers are not called if an earlier matcher returns false. Constructor Summary AllOf(java.lang.Iterable<Matcher<? super T>> matchers) Method Summary static <T> Matcher<T> allOf(java.lang.Iterable<Matcher<? super T>> matchers) Creates a matcher that matches if the examined object matches...
    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