Package org.elasticsearch.index.mapper
Class AbstractGeometryFieldMapper<Parsed,Processed>
- java.lang.Object
-
- org.elasticsearch.index.mapper.Mapper
-
- org.elasticsearch.index.mapper.FieldMapper
-
- org.elasticsearch.index.mapper.AbstractGeometryFieldMapper<Parsed,Processed>
-
- All Implemented Interfaces:
Cloneable,Iterable<Mapper>,ToXContent,ToXContentFragment
- Direct Known Subclasses:
GeoShapeFieldMapper,LegacyGeoShapeFieldMapper
public abstract class AbstractGeometryFieldMapper<Parsed,Processed> extends FieldMapper
Base class forGeoShapeFieldMapperandLegacyGeoShapeFieldMapper
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAbstractGeometryFieldMapper.AbstractGeometryFieldType<Parsed,Processed>static classAbstractGeometryFieldMapper.Builder<T extends AbstractGeometryFieldMapper.Builder,Y extends AbstractGeometryFieldMapper>static classAbstractGeometryFieldMapper.Defaultsstatic interfaceAbstractGeometryFieldMapper.Indexer<Parsed,Processed>Interface representing an preprocessor in geo-shape indexing pipelinestatic classAbstractGeometryFieldMapper.Namesstatic interfaceAbstractGeometryFieldMapper.Parser<Parsed>interface representing parser in geo shape indexing pipelinestatic interfaceAbstractGeometryFieldMapper.QueryProcessorinterface representing a query builder that generates a query from the given shapestatic classAbstractGeometryFieldMapper.TypeParser-
Nested classes/interfaces inherited from class org.elasticsearch.index.mapper.FieldMapper
FieldMapper.CopyTo, FieldMapper.MultiFields
-
Nested classes/interfaces inherited from class org.elasticsearch.index.mapper.Mapper
Mapper.BuilderContext
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description protected Explicit<Boolean>coerceprotected static StringDEPRECATED_PARAMETERS_KEYprotected Explicit<Boolean>ignoreMalformedprotected Explicit<Boolean>ignoreZValue-
Fields inherited from class org.elasticsearch.index.mapper.FieldMapper
COERCE_SETTING, copyTo, defaultFieldType, fieldType, IGNORE_MALFORMED_SETTING, indexCreatedVersion, multiFields
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractGeometryFieldMapper(String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType, Explicit<Boolean> ignoreMalformed, Explicit<Boolean> coerce, Explicit<Boolean> ignoreZValue, Settings indexSettings, FieldMapper.MultiFields multiFields, FieldMapper.CopyTo copyTo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Explicit<Boolean>coerce()protected voiddoMerge(Mapper mergeWith)Merge changes coming frommergeWithin place.voiddoXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params)Explicit<Boolean>ignoreMalformed()Explicit<Boolean>ignoreZValue()ShapeBuilder.Orientationorientation()voidparse(ParseContext context)parsing logic for geometry indexingprotected voidparseCreateField(ParseContext context, List<IndexableField> fields)Parse the field value and populatefields.-
Methods inherited from class org.elasticsearch.index.mapper.FieldMapper
clone, contentType, copyTo, createFieldNamesField, doXContentAnalyzers, doXContentDocValues, fieldType, indexOptionToString, iterator, merge, name, termVectorOptionsToString, toXContent, typeName, updateFieldType
-
Methods inherited from class org.elasticsearch.index.mapper.Mapper
simpleName
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Constructor Detail
-
AbstractGeometryFieldMapper
protected AbstractGeometryFieldMapper(String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType, Explicit<Boolean> ignoreMalformed, Explicit<Boolean> coerce, Explicit<Boolean> ignoreZValue, Settings indexSettings, FieldMapper.MultiFields multiFields, FieldMapper.CopyTo copyTo)
-
-
Method Detail
-
doMerge
protected void doMerge(Mapper mergeWith)
Description copied from class:FieldMapperMerge changes coming frommergeWithin place.- Overrides:
doMergein classFieldMapper
-
parseCreateField
protected void parseCreateField(ParseContext context, List<IndexableField> fields) throws IOException
Description copied from class:FieldMapperParse the field value and populatefields. Implementations of this method should ensure that on failing to parse parser.currentToken() must be the current failing token- Specified by:
parseCreateFieldin classFieldMapper- Throws:
IOException
-
doXContentBody
public void doXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params) throws IOException
- Overrides:
doXContentBodyin classFieldMapper- Throws:
IOException
-
orientation
public ShapeBuilder.Orientation orientation()
-
parse
public void parse(ParseContext context) throws IOException
parsing logic for geometry indexing- Overrides:
parsein classFieldMapper- Throws:
IOException
-
-