Package org.elasticsearch.index.mapper
Class GeoShapeFieldMapper
- java.lang.Object
-
- org.elasticsearch.index.mapper.Mapper
-
- org.elasticsearch.index.mapper.FieldMapper
-
- org.elasticsearch.index.mapper.GeoShapeFieldMapper
-
- All Implemented Interfaces:
java.lang.Cloneable,java.lang.Iterable<Mapper>,ToXContent,ToXContentFragment
public class GeoShapeFieldMapper extends FieldMapper
FieldMapper for indexingShapes.Currently Shapes can only be indexed and can only be queried using
GeoShapeQueryBuilder, consequently a lot of behavior in this Mapper is disabled.Format supported:
"field" : { "type" : "polygon", "coordinates" : [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGeoShapeFieldMapper.Builderstatic classGeoShapeFieldMapper.Defaultsstatic classGeoShapeFieldMapper.GeoShapeFieldTypestatic classGeoShapeFieldMapper.Namesstatic classGeoShapeFieldMapper.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<java.lang.Boolean>coercestatic java.lang.StringCONTENT_TYPEprotected Explicit<java.lang.Boolean>ignoreMalformedprotected Explicit<java.lang.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 Constructor Description GeoShapeFieldMapper(java.lang.String simpleName, MappedFieldType fieldType, Explicit<java.lang.Boolean> ignoreMalformed, Explicit<java.lang.Boolean> coerce, Explicit<java.lang.Boolean> ignoreZValue, Settings indexSettings, FieldMapper.MultiFields multiFields, FieldMapper.CopyTo copyTo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Explicit<java.lang.Boolean>coerce()protected java.lang.StringcontentType()protected voiddoMerge(Mapper mergeWith, boolean updateAllTypes)Merge changes coming frommergeWithin place.protected voiddoXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params)GeoShapeFieldMapper.GeoShapeFieldTypefieldType()Explicit<java.lang.Boolean>ignoreMalformed()Explicit<java.lang.Boolean>ignoreZValue()voidparse(ParseContext context)Parse the field value using the providedParseContext.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, 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 org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Field Detail
-
CONTENT_TYPE
public static final java.lang.String CONTENT_TYPE
- See Also:
- Constant Field Values
-
coerce
protected Explicit<java.lang.Boolean> coerce
-
ignoreMalformed
protected Explicit<java.lang.Boolean> ignoreMalformed
-
ignoreZValue
protected Explicit<java.lang.Boolean> ignoreZValue
-
-
Constructor Detail
-
GeoShapeFieldMapper
public GeoShapeFieldMapper(java.lang.String simpleName, MappedFieldType fieldType, Explicit<java.lang.Boolean> ignoreMalformed, Explicit<java.lang.Boolean> coerce, Explicit<java.lang.Boolean> ignoreZValue, Settings indexSettings, FieldMapper.MultiFields multiFields, FieldMapper.CopyTo copyTo)
-
-
Method Detail
-
fieldType
public GeoShapeFieldMapper.GeoShapeFieldType fieldType()
- Overrides:
fieldTypein classFieldMapper
-
parse
public void parse(ParseContext context) throws java.io.IOException
Description copied from class:FieldMapperParse the field value using the providedParseContext.- Overrides:
parsein classFieldMapper- Throws:
java.io.IOException
-
parseCreateField
protected void parseCreateField(ParseContext context, java.util.List<org.apache.lucene.index.IndexableField> fields) throws java.io.IOException
Description copied from class:FieldMapperParse the field value and populatefields.- Specified by:
parseCreateFieldin classFieldMapper- Throws:
java.io.IOException
-
doMerge
protected void doMerge(Mapper mergeWith, boolean updateAllTypes)
Description copied from class:FieldMapperMerge changes coming frommergeWithin place.- Overrides:
doMergein classFieldMapperupdateAllTypes- TODO
-
doXContentBody
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, ToXContent.Params params) throws java.io.IOException
- Overrides:
doXContentBodyin classFieldMapper- Throws:
java.io.IOException
-
coerce
public Explicit<java.lang.Boolean> coerce()
-
ignoreMalformed
public Explicit<java.lang.Boolean> ignoreMalformed()
-
ignoreZValue
public Explicit<java.lang.Boolean> ignoreZValue()
-
contentType
protected java.lang.String contentType()
- Specified by:
contentTypein classFieldMapper
-
-