Packages

p

pureconfig

package pureconfig

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. pureconfig
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package module

Value Members

  1. def saveConfigAsPropertyFile[A](conf: A, outputPath: Path, overrideOutputPath: Boolean, options: ConfigRenderOptions)(implicit writer: Derivation[ConfigWriter[A]]): Unit
    Annotations
    @throws(scala.this.throws.<init>$default$1[IllegalArgumentException])
  2. def saveConfigToStream[A](conf: A, outputStream: OutputStream, options: ConfigRenderOptions)(implicit writer: Derivation[ConfigWriter[A]]): Unit

Deprecated Value Members

  1. def loadConfig[A](conf: Config, namespace: String)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).at(namespace).load[A] instead

  2. def loadConfig[A](conf: Config)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).load[A] instead

  3. def loadConfig[A](path: Path, namespace: String)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default(ConfigSource.file(path)).at(namespace).load[A] instead

  4. def loadConfig[A](path: Path)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default(ConfigSource.file(path)).load[A] instead

  5. def loadConfig[A](namespace: String)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default.at(namespace).load[A] instead

  6. def loadConfig[A](implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default.load[A] instead

  7. def loadConfigFromFiles[A](files: Traversable[Path], failOnReadError: Boolean, namespace: String)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Construct a custom ConfigSource pipeline instead

  8. def loadConfigFromFilesOrThrow[A](files: Traversable[Path])(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Construct a custom ConfigSource pipeline instead

  9. def loadConfigOrThrow[A](conf: Config, namespace: String)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).at(namespace).loadOrThrow[A] instead

  10. def loadConfigOrThrow[A](conf: Config)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).loadOrThrow[A] instead

  11. def loadConfigOrThrow[A](path: Path, namespace: String)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default(ConfigSource.file(path)).at(namespace).loadOrThrow[A] instead

  12. def loadConfigOrThrow[A](path: Path)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default(ConfigSource.file(path)).loadOrThrow[A] instead

  13. def loadConfigOrThrow[A](namespace: String)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default.at(namespace).loadOrThrow[A] instead

  14. def loadConfigOrThrow[A](implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.default.loadOrThrow[A] instead

  15. def loadConfigWithFallback[A](conf: Config, namespace: String)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).withFallback(ConfigSource.default).at(namespace).load[A] instead

  16. def loadConfigWithFallback[A](conf: Config)(implicit reader: Derivation[ConfigReader[A]]): Result[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).withFallback(ConfigSource.default).load[A] instead

  17. def loadConfigWithFallbackOrThrow[A](conf: Config, namespace: String)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).withFallback(ConfigSource.default).at(namespace).loadOrThrow[A] instead

  18. def loadConfigWithFallbackOrThrow[A](conf: Config)(implicit arg0: ClassTag[A], reader: Derivation[ConfigReader[A]]): A
    Annotations
    @throws(scala.this.throws.<init>$default$1[pureconfig.error.ConfigReaderException[_]]) @deprecated
    Deprecated

    (Since version 0.12.0) Use ConfigSource.fromConfig(conf).withFallback(ConfigSource.default).loadOrThrow[A] instead

Inherited from AnyRef

Inherited from Any

Ungrouped