
org.codelibs.fess.suggest.constants.FieldNames Maven / Gradle / Ivy
/*
* Copyright 2012-2024 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.suggest.constants;
public final class FieldNames {
public static final String ID = "_id";
public static final String TEXT = "text";
public static final String READING_PREFIX = "reading_";
public static final String SCORE = "score";
public static final String QUERY_FREQ = "queryFreq";
public static final String DOC_FREQ = "docFreq";
public static final String USER_BOOST = "userBoost";
public static final String KINDS = "kinds";
public static final String TIMESTAMP = "@timestamp";
public static final String TAGS = "tags";
public static final String ROLES = "roles";
public static final String FIELDS = "fields";
public static final String LANGUAGES = "languages";
public static final String ARRAY_KEY = "key";
public static final String ARRAY_VALUE = "value";
public static final String ANALYZER_SETTINGS_TYPE = "settingsType";
public static final String ANALYZER_SETTINGS_FIELD_NAME = "fieldName";
public static final String ANALYZER_SETTINGS_READING_ANALYZER = "readingAnalyzer";
public static final String ANALYZER_SETTINGS_READING_TERM_ANALYZER = "readingTermAnalyzer";
public static final String ANALYZER_SETTINGS_NORMALIZE_ANALYZER = "normalizeAnalyzer";
public static final String ANALYZER_SETTINGS_CONTENTS_ANALYZER = "contentsAnalyzer";
public static final String ANALYZER_SETTINGS_CONTENTS_READING_ANALYZER = "contentsReadingAnalyzer";
private FieldNames() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy