Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_full (0.21 sec)

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

    static <T> Matcher<T> not(T value) { return not(equalTo(value)); } } org/hamcrest/core/IsNull.java org/hamcrest/core/IsNull.java /* Copyright (c) 2000-2010 hamcrest.org */ package org.hamcrest.core; import static org.hamcrest.core.IsNot.not; import org.hamcrest.Description; import org.hamcrest.Matcher; import org.hamcrest.Factory; import org.hamcrest.BaseMatcher; /** * Is the value null? */ public class IsNull<T> extends BaseMatcher<T> { @Override public boolean matches(Object o) { return o == null;...
    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.jar

    matches(Object); public void describeTo(org.hamcrest.Description); public static org.hamcrest.Matcher not(org.hamcrest.Matcher); public static org.hamcrest.Matcher not(Object); } org/hamcrest/core/IsNull.class package org.hamcrest.core; public synchronized class IsNull extends org.hamcrest.BaseMatcher { public void IsNull(); public boolean matches(Object); public void describeTo(org.hamcrest.Description); public static org.hamcrest.Matcher nullValue(); public static org.hamcrest.Matcher notNullValue(); public...
    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-javadoc.jar

    shortcut to the frequently used not(equalTo(x)). static Matcher<java.lang.Object> IsNull.notNullValue() A shortcut to the frequently used not(nullValue()). static <T> Matcher<T> IsNull.notNullValue(java.lang.Class<T> type) A shortcut to the frequently used not(nullValue(X.class)). static Matcher<java.lang.Object> IsNull.nullValue() Creates a matcher that matches if examined object is null. static <T> Matcher<T> IsNull.nullValue(java.lang.Class<T> type) Creates a matcher that matches if examined object...
    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