Package org.elasticsearch.index.mapper
Class CompletionFieldMapper.CompletionFieldType
java.lang.Object
org.elasticsearch.index.mapper.MappedFieldType
org.elasticsearch.index.mapper.SimpleMappedFieldType
org.elasticsearch.index.mapper.TermBasedFieldType
org.elasticsearch.index.mapper.CompletionFieldMapper.CompletionFieldType
- Enclosing class:
- CompletionFieldMapper
public static final class CompletionFieldMapper.CompletionFieldType extends TermBasedFieldType
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.index.mapper.MappedFieldType
MappedFieldType.CollapseType, MappedFieldType.Relation -
Constructor Summary
Constructors Constructor Description CompletionFieldType(java.lang.String name, NamedAnalyzer searchAnalyzer, java.util.Map<java.lang.String,java.lang.String> meta) -
Method Summary
Modifier and Type Method Description org.apache.lucene.search.suggest.document.CompletionQueryfuzzyQuery(java.lang.String value, Fuzziness fuzziness, int nonFuzzyPrefixLength, int minFuzzyPrefixLength, int maxExpansions, boolean transpositions, boolean unicodeAware)Completion prefix fuzzy queryContextMappingsgetContextMappings()booleanhasContextMappings()static org.apache.lucene.codecs.PostingsFormatpostingsFormat()org.apache.lucene.search.suggest.document.CompletionQueryprefixQuery(java.lang.Object value)Completion prefix queryorg.apache.lucene.search.suggest.document.CompletionQueryregexpQuery(java.lang.Object value, int flags, int maxDeterminizedStates)Completion prefix regular expression queryvoidsetContextMappings(ContextMappings contextMappings)java.lang.StringtypeName()Returns the name of this type, as would be specified in mapping propertiesValueFetchervalueFetcher(SearchExecutionContext context, java.lang.String format)Create a helper class to fetch field values during theFetchFieldsPhase.Methods inherited from class org.elasticsearch.index.mapper.TermBasedFieldType
indexedValueForSearch, termQuery, termQueryCaseInsensitive, termsQueryMethods inherited from class org.elasticsearch.index.mapper.SimpleMappedFieldType
rangeQuery, rangeQueryMethods inherited from class org.elasticsearch.index.mapper.MappedFieldType
boost, collapseType, distanceFeatureQuery, docValueFormat, eagerGlobalOrdinals, existsQuery, extractTerm, failIfNoDocValues, failIfNotIndexed, familyTypeName, fielddataBuilder, fuzzyQuery, getTextSearchInfo, hasDocValues, intervals, isAggregatable, isFieldWithinQuery, isSearchable, isStored, meta, multiPhraseQuery, name, normalizedWildcardQuery, phrasePrefixQuery, phraseQuery, pointReaderIfPossible, prefixQuery, prefixQuery, regexpQuery, setBoost, spanPrefixQuery, valueForDisplay, wildcardQuery, wildcardQueryMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
CompletionFieldType
public CompletionFieldType(java.lang.String name, NamedAnalyzer searchAnalyzer, java.util.Map<java.lang.String,java.lang.String> meta)
-
-
Method Details
-
setContextMappings
-
hasContextMappings
public boolean hasContextMappings()- Returns:
- true if there are one or more context mappings defined for this field type
-
getContextMappings
- Returns:
- associated context mappings for this field type
-
postingsFormat
public static org.apache.lucene.codecs.PostingsFormat postingsFormat()- Returns:
- postings format to use for this field-type
-
prefixQuery
public org.apache.lucene.search.suggest.document.CompletionQuery prefixQuery(java.lang.Object value)Completion prefix query -
regexpQuery
public org.apache.lucene.search.suggest.document.CompletionQuery regexpQuery(java.lang.Object value, int flags, int maxDeterminizedStates)Completion prefix regular expression query -
fuzzyQuery
public org.apache.lucene.search.suggest.document.CompletionQuery fuzzyQuery(java.lang.String value, Fuzziness fuzziness, int nonFuzzyPrefixLength, int minFuzzyPrefixLength, int maxExpansions, boolean transpositions, boolean unicodeAware)Completion prefix fuzzy query -
typeName
public java.lang.String typeName()Description copied from class:MappedFieldTypeReturns the name of this type, as would be specified in mapping properties- Specified by:
typeNamein classMappedFieldType
-
valueFetcher
Description copied from class:MappedFieldTypeCreate a helper class to fetch field values during theFetchFieldsPhase.New field types must implement this method in order to support the search 'fields' option. Except for metadata fields, field types should not throw
UnsupportedOperationExceptionsince this could cause a search retrieving multiple fields (like "fields": ["*"]) to fail.- Specified by:
valueFetcherin classMappedFieldType
-