Packages

object JoinConfigCompatChecker

Source
JoinConfigCompatChecker.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JoinConfigCompatChecker
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def exists(requiredKeys: Seq[String], toCheck: Config): ConfigValidation

    Checks that all requiredKeys are available in toCheck Config.

    Checks that all requiredKeys are available in toCheck Config.

    requiredKeys

    - a Seq of required keys

    toCheck

    - the Config instance to be checked

  2. def fullMatch(requiredKeys: Seq[String], toCheck: Config, actualConfig: Config): ConfigValidation

    Checks that all requiredKeys are available in toCheck Config and its values match exactly the values in currentConfig.

    Checks that all requiredKeys are available in toCheck Config and its values match exactly the values in currentConfig.

    requiredKeys

    - a Seq of required keys

    toCheck

    - the Config instance to be checked

    actualConfig

    - the Config instance containing the expected values