object ConfigItem
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConfigItem
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Array[F[_]](get: (Int) => F[ConfigItem[F]], keys: data.Flux.Stream[F, Int]) extends IndexedValue[F, Int] with Product with Serializable
- final case class Bool(value: Boolean) extends SimpleValue[Boolean] with Product with Serializable
- final case class Dict[F[_]](get: (String) => F[ConfigItem[F]], keys: data.Flux.Stream[F, String]) extends IndexedValue[F, String] with Product with Serializable
- implicit final class IdConfigItemOps extends AnyVal
- type IndexedC[f[_], I] = ((I) => f[ConfigItem[f]], data.Flux.Stream[f, I])
- sealed trait IndexedValue[F[_], I] extends Value[F, [α$1$[_$2]]((I) => α$1$[ConfigItem[α$1$]], FluxRepr[α$1$, Option, I])]
- final case class Num(value: BigDecimal) extends SimpleValue[BigDecimal] with Product with Serializable
- type SimpleC[f[_], A] = A
- sealed trait SimpleValue[A] extends Value[Nothing, [α$0$[_$1]]A]
- final case class Str(value: String) extends SimpleValue[String] with Product with Serializable
- final case class Stream[F[_]](value: data.Flux.Stream[F, ConfigItem[F]]) extends Value[F, StreamC] with Product with Serializable
- type StreamC[f[_]] = FluxRepr[f, Option, ConfigItem[f]]
- implicit final class SyncConfigItemOps[F[_]] extends AnyVal
- sealed trait Value[+F[_], U[_[_]]] extends ConfigItem[F]
- sealed trait ValueTag extends AnyRef
- sealed trait ValueType[T[_[_]]] extends ValueTag
- sealed trait ValueTypeIndexed[I] extends ValueType[[α$3$[_$4]]((I) => α$3$[ConfigItem[α$3$]], FluxRepr[α$3$, Option, I])]
- sealed trait ValueTypeSimple[A] extends ValueType[[α$2$[_$3]]A]
- sealed trait ValueTypeStream extends ValueType[StreamC]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def dict[F[_]](dict: Map[String, ConfigItem[F]])(implicit arg0: Applicative[F]): Dict[F]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def seq[F[_]](seq: IndexedSeq[ConfigItem[F]])(implicit arg0: Applicative[F]): Array[F]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- case object Null extends SimpleValue[Unit] with Product with Serializable
- object ValueType