package config

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class AbstractBool(value: Boolean) extends AbstractValue with Product with Serializable
  2. final case class AbstractChar(value: Char) extends AbstractValue with Product with Serializable
  3. final case class AbstractDuration(value: Duration) extends AbstractValue with Product with Serializable
  4. final case class AbstractList(values: List[AbstractValue]) extends AbstractValue with Product with Serializable
  5. final case class AbstractMap(value: Map[String, AbstractValue]) extends AbstractValue with Product with Serializable
  6. final case class AbstractNumber(value: Double) extends AbstractValue with Product with Serializable
  7. final case class AbstractRange(value: Range) extends AbstractValue with Product with Serializable
  8. final case class AbstractString(value: String) extends AbstractValue with Product with Serializable
  9. sealed trait AbstractValue extends AnyRef

    The abstract config value.

    The abstract config value.

    Since

    2015-11-27

  10. trait ConcreteValue[A] extends AnyRef

    Type class used to convert an AbstractValue into a concrete Scala value.

    Type class used to convert an AbstractValue into a concrete Scala value.

    Annotations
    @implicitNotFound( ... )
    Since

    2015-11-27

  11. final case class Config(abstractMap: AbstractMap) extends Dynamic with Product with Serializable

    This class represents the configuration.

    This class represents the configuration.

    Since

    2015-11-27

  12. trait ConfigLoader[R] extends AnyRef

    This type class represents a configuration loader.

    This type class represents a configuration loader.

    Annotations
    @implicitNotFound( ... )
    Since

    2015-12-01

  13. final case class ConfigWalker(value: Try[AbstractValue]) extends Dynamic with Product with Serializable

    This class lets you walk across a configuration dynamically.

    This class lets you walk across a configuration dynamically. Nonetheless it manages possible errors within the Try.

    Since

    2016-11-23

Value Members

  1. object AbstractNone extends AbstractValue with Product with Serializable
  2. object ConcreteValue
  3. object Config extends Serializable
  4. object ConfigLoader
  5. object ConfigParser

    Since

    2016-10-13

Ungrouped