- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for isFacetField (2.16 sec)
-
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
* Uses O(1) Set lookup for improved performance. * * @param field the field name to check * @return true if the field can be used for faceted search, false otherwise */ public boolean isFacetField(final String field) { if (StringUtil.isBlank(field)) { return false; } return facetFieldSet != null && facetFieldSet.contains(field); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.9K bytes - Viewed (0)