- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CheckForNull (0.07 sec)
-
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 Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 47.7K bytes - Viewed (0) -
.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 Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Aug 11 17:25:01 UTC 2025 - 4.9K bytes - Viewed (0) -
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
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0)