Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LabelValueMap (0.29 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            return LaRequestUtil.getOptionalRequest().map(req -> {
                @SuppressWarnings("unchecked")
                final Map<String, String> labelValueMap = (Map<String, String>) req.getAttribute(Constants.LABEL_VALUE_MAP);
                if (labelValueMap != null) {
                    return labelValueMap.get(value) != null;
                }
                return false;
            }).orElse(false);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        public static final String FACET_FORM = "fess.FacetForm";
    
        public static final String GEO_FORM = "fess.GeoForm";
    
        public static final String LABEL_VALUE_MAP = "fess.LabelValueMap";
    
        public static final String OPTION_QUERY_Q = "q";
    
        public static final String OPTION_QUERY_CQ = "cq";
    
        public static final String OPTION_QUERY_OQ = "oq";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top