Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unchecked (0.18 sec)

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

    ass()); } /** * The default constructor for simple sub types */ protected TypeSafeDiagnosingMa() { this(TYPE_FINDER); } @Override @SuppressWarnings("unchecked") public final boolean matches(Object item) { return item != null && expectedType.isInstance(item) && matchesSafely((T) item, new Description.NullDescription()); } @SuppressWarnings("unchecked") @Override public final void describeMismatch(Object item, Description mismatchDescription) { if (item == null || !expectedType.isInstance(item)) {...
    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

    Method Detail matchesSafely protected abstract boolean matchesSafely(T item) Subclasses should implement this. The item will already have been checked for the specific type and will never be null. describeMismatchSafe protected void describeMismatchSafe(T item, Description mismatchDescription) Subclasses should override this. The item will already have been checked for the specific type and will never be null. matches public final boolean matches(java.lang.Object item) Methods made final to prevent accidental...
    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