- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for booleanValue (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava-tests/test/com/google/common/base/PreconditionsTest.java
boolean aBoolean = true; Long boxedLong = null; int anInt = 1; // With a boxed predicate, no overloads can be selected in phase 1 // ambiguous without the call to .booleanValue to unbox the Boolean checkState(boxedBoolean.booleanValue(), "", 1); // ambiguous without the cast to Object because the boxed predicate prevents any overload from // being selected in phase 1Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 19K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java
throws XmlPullParserException { if (s != null && s.length() != 0) { return Boolean.valueOf(s).booleanValue(); } if (defaultValue != null) { return Boolean.valueOf(defaultValue).booleanValue(); } return false; } // -- boolean getBooleanValue( String, String, XmlPullParser, String ) /** * Method getByteValue.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 25.3K bytes - Click Count (0)