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

com.typesafe.config.impl.Container Maven / Gradle / Ivy

/**
 *   Copyright (C) 2014 Typesafe Inc. 
 */
package com.typesafe.config.impl;

/**
 * An AbstractConfigValue which contains other values. Java has no way to
 * express "this has to be an AbstractConfigValue also" other than making
 * AbstractConfigValue an interface which would be aggravating. But we can say
 * we are a ConfigValue.
 */
interface Container extends com.typesafe.config.ConfigValue {
    /**
     * Replace a child of this value. CAUTION if replacement is null, delete the
     * child, which may also delete the parent, or make the parent into a
     * non-container.
     */
    AbstractConfigValue replaceChild(AbstractConfigValue child, AbstractConfigValue replacement);

    /**
     * Super-expensive full traversal to see if descendant is anywhere
     * underneath this container.
     */
    boolean hasDescendant(AbstractConfigValue descendant);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy