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

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

package com.typesafe.config.impl;

/**
 * Implemented by a merge stack (ConfigDelayedMerge, ConfigDelayedMergeObject)
 * that replaces itself during substitution resolution in order to implement
 * "look backwards only" semantics.
 */
interface ReplaceableMergeStack extends Container {
    /**
     * Make a replacement for this object skipping the given number of elements
     * which are lower in merge priority.
     */
    AbstractConfigValue makeReplacement(ResolveContext context, int skipping);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy