Class CategoryContextMapping
java.lang.Object
org.elasticsearch.search.suggest.completion.context.ContextMapping<CategoryQueryContext>
org.elasticsearch.search.suggest.completion.context.CategoryContextMapping
- All Implemented Interfaces:
ToXContent,ToXContentFragment
public class CategoryContextMapping extends ContextMapping<CategoryQueryContext>
A
ContextMapping that uses a simple string as a criteria
The suggestions are boosted and/or filtered by their associated
category (string) value.
CategoryQueryContext defines options for constructing
a unit of query context for this context type-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCategoryContextMapping.BuilderBuilder forCategoryContextMappingNested classes/interfaces inherited from class org.elasticsearch.search.suggest.completion.context.ContextMapping
ContextMapping.InternalQueryContext, ContextMapping.TypeNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params -
Field Summary
Fields inherited from class org.elasticsearch.search.suggest.completion.context.ContextMapping
FIELD_NAME, FIELD_TYPE, name, type -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)protected CategoryQueryContextfromXContent(XContentParser parser)Prototype for the query contextjava.lang.StringgetFieldName()Name of the field to get contexts from at index-timeinthashCode()protected static CategoryContextMappingload(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> config)Loads anamedCategoryContextMappinginstance from a map.java.util.Set<java.lang.String>parseContext(ParseContext.Document document)Retrieves a set of context from adocumentat index-time.java.util.Set<java.lang.String>parseContext(ParseContext parseContext, XContentParser parser)Parse a set ofCharSequencecontexts at index-time.protected XContentBuildertoInnerXContent(XContentBuilder builder, ToXContent.Params params)Implementations should add specific configurations that need to be persistedjava.util.List<ContextMapping.InternalQueryContext>toInternalQueryContexts(java.util.List<CategoryQueryContext> queryContexts)Parse a list ofCategoryQueryContextusingparser.Methods inherited from class org.elasticsearch.search.suggest.completion.context.ContextMapping
name, parseQueryContext, toString, toXContent, type, validateContextPaths, validateReferences
-
Method Details
-
getFieldName
public java.lang.String getFieldName()Name of the field to get contexts from at index-time -
load
protected static CategoryContextMapping load(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> config) throws ElasticsearchParseExceptionLoads anamedCategoryContextMappinginstance from a map. seeContextMappings.load(Object, Version)Acceptable map param:path- Throws:
ElasticsearchParseException
-
toInnerXContent
protected XContentBuilder toInnerXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOExceptionDescription copied from class:ContextMappingImplementations should add specific configurations that need to be persisted- Specified by:
toInnerXContentin classContextMapping<CategoryQueryContext>- Throws:
java.io.IOException
-
parseContext
public java.util.Set<java.lang.String> parseContext(ParseContext parseContext, XContentParser parser) throws java.io.IOException, ElasticsearchParseExceptionParse a set ofCharSequencecontexts at index-time. Acceptable formats:- Array:
[<string>, ..]
- String:
"string"
- Specified by:
parseContextin classContextMapping<CategoryQueryContext>- Throws:
java.io.IOExceptionElasticsearchParseException
- Array:
-
parseContext
Description copied from class:ContextMappingRetrieves a set of context from adocumentat index-time.- Specified by:
parseContextin classContextMapping<CategoryQueryContext>
-
fromXContent
Description copied from class:ContextMappingPrototype for the query context- Specified by:
fromXContentin classContextMapping<CategoryQueryContext>- Throws:
java.io.IOException
-
toInternalQueryContexts
public java.util.List<ContextMapping.InternalQueryContext> toInternalQueryContexts(java.util.List<CategoryQueryContext> queryContexts)Parse a list ofCategoryQueryContextusingparser. A QueryContexts accepts one of the following forms:- Object: CategoryQueryContext
- String: CategoryQueryContext value with prefix=false and boost=1
- Array:
[CategoryQueryContext, ..]
- Object:
{"context": <string>, "boost": <int>, "prefix": <boolean>} - String:
"string"
- Specified by:
toInternalQueryContextsin classContextMapping<CategoryQueryContext>
-
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classContextMapping<CategoryQueryContext>
-
hashCode
public int hashCode()- Overrides:
hashCodein classContextMapping<CategoryQueryContext>
-