Package

classy

Permalink

package classy

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

Value Members

  1. package config

    Permalink

    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")

Inherited from AnyRef

Inherited from Any

Ungrouped