Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getStringList (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         * @return A List of strings, never null
         * @throws IllegalArgumentException if the value is not a String or List
         */
        @SuppressWarnings("unchecked")
        public static List<String> getStringList(final Map<String, Object> map, final String key) {
            final Object value = map.get(key);
            if (value == null) {
                return new ArrayList<>();
            }
    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