Packages

object ConfigDecoder

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

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 apply[A, B](implicit decoder: ConfigDecoder[A, B]): ConfigDecoder[A, B]

    Returns a ConfigDecoder instance between the two specified types if an instance is available.

  5. final def apply[A]: ConfigDecoder[A, A]

    Returns a new ConfigDecoder for the specified type without performing any kind of decoding.

    Returns a new ConfigDecoder for the specified type without performing any kind of decoding. Alias for the ConfigDecoder.identity function.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  8. implicit final def configDecoderContravariant[B]: Contravariant[[α$0$]ConfigDecoder[α$0$, B]]

  9. implicit final def configDecoderMonadError[A]: MonadError[[β$2$]ConfigDecoder[A, β$2$], ConfigError]

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  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 identity[A]: ConfigDecoder[A, A]

    Returns a new ConfigDecoder for the specified type without performing any kind of decoding.

  15. implicit final def identityConfigDecoder[A]: ConfigDecoder[A, A]

  16. final def instance[A, B](decode: (Option[ConfigKey], A) => Either[ConfigError, B]): ConfigDecoder[A, B]

    Returns a new ConfigDecoder which decodes values using the specified function, with access to the key.

    Returns a new ConfigDecoder which decodes values using the specified function, with access to the key.

    If the decode function does not need access to the key, then we can use ConfigDecoder.lift instead.

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def lift[A, B](decode: (A) => Either[ConfigError, B]): ConfigDecoder[A, B]

    Returns a new ConfigDecoder which decodes values using the specified function.

    Returns a new ConfigDecoder which decodes values using the specified function.

    If the decode function needs access to the key, then we can use ConfigDecoder.instance instead.

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

  23. implicit final val stringBigDecimalConfigDecoder: ConfigDecoder[String, BigDecimal]

  24. implicit final val stringBigIntConfigDecoder: ConfigDecoder[String, BigInt]

  25. implicit final val stringBooleanConfigDecoder: ConfigDecoder[String, Boolean]

  26. implicit final val stringByteConfigDecoder: ConfigDecoder[String, Byte]

  27. implicit final val stringCharConfigDecoder: ConfigDecoder[String, Char]

  28. implicit final val stringDoubleConfigDecoder: ConfigDecoder[String, Double]

  29. implicit final val stringDurationConfigDecoder: ConfigDecoder[String, Duration]

  30. implicit final val stringFiniteDurationConfigDecoder: ConfigDecoder[String, FiniteDuration]

  31. implicit final val stringFloatConfigDecoder: ConfigDecoder[String, Float]

  32. implicit final val stringIntConfigDecoder: ConfigDecoder[String, Int]

  33. implicit final val stringLongConfigDecoder: ConfigDecoder[String, Long]

  34. implicit final val stringShortConfigDecoder: ConfigDecoder[String, Short]

  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. 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

Creating Instances

Decoder Instances

Type Class Instances

Ungrouped