Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for CheckForNull (0.07 seconds)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        }
    
        public void oneArgCheckForNullCorrectlyDoesNotThrowNpe(@CheckForNull String s) {
          // null?  no problem
        }
    
        public void oneArgNullableCorrectlyDoesNotThrowNpe(@Nullable String s) {
          // null?  no problem
        }
    
        public void oneArgCheckForNullCorrectlyThrowsOtherThanNpe(@CheckForNull String s) {
          throw new FooException(); // ok, as long as it's not NullPointerException
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 47.9K bytes
    - Click Count (0)
  2. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
     * <p>The tested methods and constructors are invoked -- each time with one parameter being null and
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  3. guava-testlib/src/com/google/common/testing/NullPointerTester.java

     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
     * <p>The tested methods and constructors are invoked -- each time with one parameter being null and
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 14 14:44:08 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  4. .idea/misc.xml

              <item index="7" class="java.lang.String" itemvalue="jakarta.annotation.Nullable" />
              <item index="8" class="java.lang.String" itemvalue="javax.annotation.CheckForNull" />
              <item index="9" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
              <item index="10" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NullableDecl" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Feb 16 19:01:50 GMT 2026
    - 5.4K bytes
    - Click Count (0)
Back to Top