Package org.elasticsearch.index.mapper
Class Mapping
java.lang.Object
org.elasticsearch.index.mapper.Mapping
- All Implemented Interfaces:
ToXContent
,ToXContentFragment
Wrapper around everything that defines a mapping, without references to
utility classes like MapperService, ...
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionMapping
(RootObjectMapper rootObjectMapper, MetadataFieldMapper[] metadataMappers, Map<String, Object> meta) -
Method Summary
Modifier and TypeMethodDescriptiongetMeta()
Returns the meta section for the current mapping<T extends MetadataFieldMapper>
TgetMetadataMapperByClass
(Class<T> clazz) Get the metadata mapper with the given class.merge
(Mapping mergeWith, MapperService.MergeReason reason) Merges a new mapping into the existing one.Outputs this mapping instance and returns it inCompressedXContent
formattoString()
toXContent
(XContentBuilder builder, ToXContent.Params params) type()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Field Details
-
EMPTY
-
-
Constructor Details
-
Mapping
public Mapping(RootObjectMapper rootObjectMapper, MetadataFieldMapper[] metadataMappers, Map<String, Object> meta)
-
-
Method Details
-
toCompressedXContent
Outputs this mapping instance and returns it inCompressedXContent
format- Returns:
- the
CompressedXContent
representation of this mapping instance
-
type
-
getMeta
Returns the meta section for the current mapping -
getMetadataMapperByClass
Get the metadata mapper with the given class. -
merge
Merges a new mapping into the existing one.- Parameters:
mergeWith
- the new mapping to merge into this one.reason
- the reason this merge was initiated.- Returns:
- the resulting merged mapping.
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
toString
-