Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Predicate (0.29 sec)

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

    the relevant "Object" classes */ public class IsInstanceOf extends DiagnosingMatcher<Object> { private final Class<?> expectedClass; private final Class<?> matchableClass; /** * Creates a new instance of IsInstanceOf * * @param expectedClass The predicate evaluates to true for instances of this class * or one of its subclasses. */ public IsInstanceOf(Class<?> expectedClass) { this.expectedClass = expectedClass; this.matchableClass = matchableClass(expectedClass); } private static Class<?> matchableClass(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)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    java.lang.Object clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait Constructor Detail IsInstanceOf public IsInstanceOf(java.lang.Class<?> expectedClass) Creates a new instance of IsInstanceOf Parameters: expectedClass - The predicate evaluates to true for instances of this class or one of its subclasses. Method Detail matches protected boolean matches(java.lang.Object item, Description mismatch) Specified by: matches in class DiagnosingMatcher<java.lang.Object> describeTo public...
    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