object ConfigProvider

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConfigProvider
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Flat extends AnyRef

    A simplified config provider that knows only how to deal with flat (key/value) properties.

    A simplified config provider that knows only how to deal with flat (key/value) properties. Because these providers are common, there is special support for implementing them.

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 asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. lazy val console: ZLayer[Any, Nothing, ConfigProvider]

    A config provider layer that loads configuration from interactive console prompts, using the default Console service.

  7. lazy val consoleProvider: ConfigProvider
  8. lazy val defaultProvider: ConfigProvider
  9. lazy val env: ZLayer[Any, Nothing, ConfigProvider]

    A config provider layer that loads configuration from environment variables, using the default System service.

  10. lazy val envProvider: ConfigProvider

    A config provider that loads configuration from environment variables, using the default System service.

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def fromFlat(flat: Flat): ConfigProvider

    Constructs a new ConfigProvider from a key/value (flat) provider, where nesting is embedded into the string keys.

  15. def fromMap(map: Map[String, String], pathDelim: String = ".", seqDelim: String = ","): ConfigProvider

    Constructs a ConfigProvider using a map and the specified delimiter string, which determines how to split the keys in the map into path segments.

  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. lazy val props: ZLayer[Any, Nothing, ConfigProvider]

    A config provider layer that loads configuration from system properties, using the default System service.

  23. lazy val propsProvider: ConfigProvider

    A configuration provider that loads configuration from system properties, using the default System service.

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. lazy val tag: Tag[ConfigProvider]

    The tag that describes the ConfigProvider service.

  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. object Flat

Inherited from AnyRef

Inherited from Any

Ungrouped