Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for BoolValue (0.21 seconds)

  1. src/main/java/org/codelibs/fess/suggest/util/MapValueExtractor.java

            final Object value = map.get(key);
            if (value == null) {
                return defaultValue;
            }
            if (value instanceof Boolean boolValue) {
                return boolValue;
            }
            return Boolean.parseBoolean(value.toString());
        }
    
        /**
         * Gets a List of Strings from the map.
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 9.8K bytes
    - Click Count (0)
Back to Top