Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CheckForNull (5.31 sec)

  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
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  2. .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" />
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 15:00:20 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top