Packages

sealed abstract class ConfigDecoder[A, B] extends AnyRef

Decodes configuration values from a first type to a second type.

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

Abstract Value Members

  1. abstract def decode(key: Option[ConfigKey], value: A): Either[ConfigError, B]

    Attempts to decode the specified value to the second type.

    Attempts to decode the specified value to the second type.

    The key may be used for improved error messages. The key is present for a single configuration value, and missing for default values and composed values.

    See also

    ConfigError.decode for creating decode errors

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def as[C](implicit decoder: ConfigDecoder[B, C]): ConfigDecoder[A, C]

    Returns a new ConfigDecoder which attempts to decode values to the specified type.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. final def collect[C](typeName: String)(f: PartialFunction[B, C])(implicit show: Show[B]): ConfigDecoder[A, C]

    Returns a new ConfigDecoder which successfully decodes values for which the specified partial function is defined.

  8. final def contramap[C](f: (C) => A): ConfigDecoder[C, B]

    Returns a new ConfigDecoder which applies the specified function on the value before decoding.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def flatMap[C](f: (B) => ConfigDecoder[A, C]): ConfigDecoder[A, C]

    Returns a new ConfigDecoder using the specified function whenever the value is successfully decoded.

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def map[C](f: (B) => C): ConfigDecoder[A, C]

    Returns a new ConfigDecoder which applies the specified function on successfully decoded values.

  16. final def mapEither[C](f: (Option[ConfigKey], B) => Either[ConfigError, C]): ConfigDecoder[A, C]

    Returns a new ConfigDecoder which successfully decodes values for which the specified function returns Right.

  17. final def mapOption[C](typeName: String)(f: (B) => Option[C])(implicit show: Show[B]): ConfigDecoder[A, C]

    Returns a new ConfigDecoder which successfully decodes values for which the specified function returns Some.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  21. final def redacted: ConfigDecoder[A, B]

    Returns a new ConfigDecoder which redacts sensitive details from error messages.

  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped