Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for roleFieldName (0.04 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            }
            final String[] tags = tagList.toArray(new String[tagList.size()]);
            final String[] roles1 = SuggestUtil.parseQuery(queryString, roleFieldName);
            final String[] roles2 = filterQueryString == null ? new String[0] : SuggestUtil.parseQuery(filterQueryString, roleFieldName);
            final String[] roles = new String[roles1.length + roles2.length];
    
            if (roles1.length > 0) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            return this;
        }
    
        /**
         * Sets the role field name.
         * @param roleFieldName The role field name.
         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setRoleFieldName(final String roleFieldName) {
            this.roleFieldName = roleFieldName;
            return this;
        }
    
        /**
         * Sets the reading converter.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            /** Tag field name key. */
            public static final String TAG_FIELD_NAME = "tagFieldName";
            /** Role field name key. */
            public static final String ROLE_FIELD_NAME = "roleFieldName";
            /** Language field name key. */
            public static final String LANG_FIELD_NAME = "langFieldName";
            /** Parallel processing key. */
            public static final String PARALLEL_PROCESSING = "parallel";
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top