AllValueReaderInstances

Companion:
object
object FicusConfig.type

Implicits

Inherited implicits

implicit val booleanValueReader: ValueReader[Boolean]
Inherited from:
AnyValReaders
implicit val chronoUnitReader: ValueReader[ChronoUnit]
Inherited from:
ChronoUnitReader
implicit val configValueReader: ValueReader[Config]
Inherited from:
ConfigReader
implicit val configValueValueReader: ValueReader[ConfigValue]
Inherited from:
ConfigValueReader
implicit val doubleValueReader: ValueReader[Double]
Inherited from:
AnyValReaders
implicit def durationReader: ValueReader[Duration]

A reader for for a scala.concurrent.duration.Duration. This reader should be able to read any valid duration format as defined by the HOCON spec and positive and negative infinite values supported by Duration's apply method. For example, it can read "15 minutes", "1 day", "-Inf", or "PlusInf".

A reader for for a scala.concurrent.duration.Duration. This reader should be able to read any valid duration format as defined by the HOCON spec and positive and negative infinite values supported by Duration's apply method. For example, it can read "15 minutes", "1 day", "-Inf", or "PlusInf".

Inherited from:
DurationReaders
implicit def finiteDurationReader: ValueReader[FiniteDuration]

A reader for for a scala.concurrent.duration.FiniteDuration. This reader should be able to read any valid duration format as defined by the HOCON spec. For example, it can read "15 minutes" or "1 day".

A reader for for a scala.concurrent.duration.FiniteDuration. This reader should be able to read any valid duration format as defined by the HOCON spec. For example, it can read "15 minutes" or "1 day".

Inherited from:
DurationReaders
implicit val intValueReader: ValueReader[Int]
Inherited from:
AnyValReaders
implicit val localDateReader: ValueReader[LocalDate]
Inherited from:
LocalDateReader
implicit val longValueReader: ValueReader[Long]
Inherited from:
AnyValReaders
implicit def mapValueReader[A](implicit entryReader: ValueReader[A]): ValueReader[Map[String, A]]
Inherited from:
CollectionReaders
implicit def optionValueReader[A](implicit valueReader: ValueReader[A]): ValueReader[Option[A]]
Inherited from:
OptionReader
implicit val periodReader: ValueReader[Period]
Inherited from:
PeriodReader
implicit val stringValueReader: ValueReader[String]
Inherited from:
StringReader
implicit val symbolValueReader: ValueReader[Symbol]
Inherited from:
SymbolReader
implicit def traversableReader[C[_], A](implicit entryReader: ValueReader[A], cbf: Factory[A, C[A]]): ValueReader[C[A]]
Inherited from:
CollectionReaders
implicit def tryValueReader[A](implicit valueReader: ValueReader[A]): ValueReader[Try[A]]
Inherited from:
TryReader