Packages

  • package root
    Definition Classes
    root
  • package classy
    Definition Classes
    root
  • package config

    Provides support for Typesafe Config/Shocon Config.

    Provides support for Typesafe Config/Shocon Config.

    Available with the "classy-config-typesafe" and "classy-config-shocon" modules. These modules and their dependencies share the same classpath and cannot be used simultaneously.

    Usage

    Read instances are available with a wildcard import:

    import classy.config._

    This enables automatically derived decoders with classy.generic as well as manual decoders:

    // decode a String from a Config at path "foo"
    val decodeFoo = readConfig[String]("foo")
    
    // decode a List[Int] from a Config path "bar"
    val decodeBar = readConfig[List[Int]]("bar")
p

classy

package classy

Linear Supertypes
AnyRef, Any

Inherited from AnyRef

Inherited from Any

Ungrouped