Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for booleanValue (0.06 sec)

  1. 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 1
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        Node value = getXPathAPI().selectSingleNode(document, entry.getValue());
                        if (value != null && isPruned != null && isPruned.booleanValue()) {
                            value = pruneNode(value, getCrawlingConfig(responseData));
                        }
                        putResultDataBody(dataMap, entry.getKey(), value != null ? value.getTextContent() : null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top