All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.index.mapper.MapperBuilderContext Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.index.mapper;

import org.elasticsearch.common.Strings;

import java.util.Objects;

/**
 * Holds context for building Mapper objects from their Builders
 */
public final class MapperBuilderContext {

    /**
     * The root context, to be used when building a tree of mappers
     */
    public static final MapperBuilderContext ROOT = new MapperBuilderContext();

    private final String path;

    private MapperBuilderContext() {
        this.path = null;
    }

    MapperBuilderContext(String path) {
        this.path = Objects.requireNonNull(path);
    }

    /**
     * Creates a new MapperBuilderContext that is a child of this context
     * @param name the name of the child context
     * @return a new MapperBuilderContext with this context as its parent
     */
    public MapperBuilderContext createChildContext(String name) {
        return new MapperBuilderContext(buildFullName(name));
    }

    /**
     * Builds the full name of the field, taking into account parent objects
     */
    public String buildFullName(String name) {
        if (Strings.isEmpty(path)) {
            return name;
        }
        return path + "." + name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy