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

org.ekrich.config.impl.Unmergeable.scala Maven / Gradle / Ivy

The newest version!
/**
 *   Copyright (C) 2011-2012 Typesafe Inc. 
 */
package org.ekrich.config.impl

import java.{util => ju}

/**
 * Interface that tags a ConfigValue that is not mergeable until after
 * substitutions are resolved. Basically these are special ConfigValue that
 * never appear in a resolved tree, like `ConfigSubstitution` and
 * {@link ConfigDelayedMerge}.
 */
trait Unmergeable {
  def unmergedValues: ju.Collection[_ <: AbstractConfigValue]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy