Package org.elasticsearch.index.mapper
Class GeoPointFieldMapper
java.lang.Object
org.elasticsearch.index.mapper.Mapper
org.elasticsearch.index.mapper.FieldMapper
org.elasticsearch.index.mapper.GeoPointFieldMapper
- All Implemented Interfaces:
java.lang.Cloneable,java.lang.Iterable<Mapper>,ToXContent,ToXContentFragment,ArrayValueMapperParser
public class GeoPointFieldMapper extends FieldMapper implements ArrayValueMapperParser
Field Mapper for geo_point types.
Uses lucene 6 LatLonPoint encoding
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGeoPointFieldMapper.Builderstatic classGeoPointFieldMapper.Defaultsstatic classGeoPointFieldMapper.GeoPointFieldTypestatic classGeoPointFieldMapper.Namesstatic classGeoPointFieldMapper.TypeParserNested classes/interfaces inherited from class org.elasticsearch.index.mapper.FieldMapper
FieldMapper.CopyTo, FieldMapper.MultiFieldsNested classes/interfaces inherited from class org.elasticsearch.index.mapper.Mapper
Mapper.BuilderContextNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONTENT_TYPEprotected Explicit<java.lang.Boolean>ignoreMalformedprotected Explicit<java.lang.Boolean>ignoreZValueFields inherited from class org.elasticsearch.index.mapper.FieldMapper
COERCE_SETTING, copyTo, defaultFieldType, fieldType, IGNORE_MALFORMED_SETTING, indexCreatedVersion, multiFields -
Constructor Summary
Constructors Constructor Description GeoPointFieldMapper(java.lang.String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType, Settings indexSettings, FieldMapper.MultiFields multiFields, Explicit<java.lang.Boolean> ignoreMalformed, Explicit<java.lang.Boolean> ignoreZValue, FieldMapper.CopyTo copyTo) -
Method Summary
Modifier and Type Method Description protected java.lang.StringcontentType()protected voiddoMerge(Mapper mergeWith)Merge changes coming frommergeWithin place.protected voiddoXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params)Explicit<java.lang.Boolean>ignoreZValue()voidparse(ParseContext context)Parse the field value using the providedParseContext.protected voidparse(ParseContext context, GeoPoint point)protected voidparseCreateField(ParseContext context, java.util.List<org.apache.lucene.index.IndexableField> fields)Parse the field value and populatefields.Methods inherited from class org.elasticsearch.index.mapper.FieldMapper
clone, copyTo, createFieldNamesField, doXContentAnalyzers, doXContentDocValues, fieldType, indexOptionToString, iterator, merge, name, termVectorOptionsToString, toXContent, typeName, updateFieldType
-
Field Details
-
CONTENT_TYPE
public static final java.lang.String CONTENT_TYPE- See Also:
- Constant Field Values
-
ignoreMalformed
-
ignoreZValue
-
-
Constructor Details
-
GeoPointFieldMapper
public GeoPointFieldMapper(java.lang.String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType, Settings indexSettings, FieldMapper.MultiFields multiFields, Explicit<java.lang.Boolean> ignoreMalformed, Explicit<java.lang.Boolean> ignoreZValue, FieldMapper.CopyTo copyTo)
-
-
Method Details
-
doMerge
Description copied from class:FieldMapperMerge changes coming frommergeWithin place.- Overrides:
doMergein classFieldMapper
-
contentType
protected java.lang.String contentType()- Specified by:
contentTypein classFieldMapper
-
parseCreateField
protected void parseCreateField(ParseContext context, java.util.List<org.apache.lucene.index.IndexableField> fields) throws java.io.IOExceptionDescription 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:
java.io.IOException
-
parse
- Throws:
java.io.IOException
-
parse
Description copied from class:FieldMapperParse the field value using the providedParseContext.- Overrides:
parsein classFieldMapper- Throws:
java.io.IOException
-
doXContentBody
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params) throws java.io.IOException- Overrides:
doXContentBodyin classFieldMapper- Throws:
java.io.IOException
-
ignoreZValue
-