Object/Trait

zio

ConfigProvider

Related Docs: trait ConfigProvider | package zio

Permalink

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. All

Type Members

  1. trait Flat extends AnyRef

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Flat

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. lazy val console: ZLayer[Any, Nothing, ConfigProvider]

    Permalink

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

  8. def consoleProvider(seqDelim: String = ","): ConfigProvider

    Permalink
  9. lazy val consoleProvider: ConfigProvider

    Permalink
  10. lazy val defaultProvider: ConfigProvider

    Permalink
  11. lazy val env: ZLayer[Any, Nothing, ConfigProvider]

    Permalink

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

  12. lazy val envProvider: ConfigProvider

    Permalink

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

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def fromEnv(pathDelim: String = "_", seqDelim: String = ","): ConfigProvider

    Permalink

    Constructs a ConfigProvider that loads configuration information from environment variables, using the default System service and the specified delimiter strings.

  17. def fromFlat(flat: Flat): ConfigProvider

    Permalink

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

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

    Permalink

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

  19. def fromProps(pathDelim: String = ".", seqDelim: String = ","): ConfigProvider

    Permalink

    Constructs a ConfigProvider that loads configuration information from system properties, using the default System service and the specified delimiter strings.

  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. lazy val props: ZLayer[Any, Nothing, ConfigProvider]

    Permalink

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

  27. lazy val propsProvider: ConfigProvider

    Permalink

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

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. lazy val tag: Tag[ConfigProvider]

    Permalink

    The tag that describes the ConfigProvider service.

  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped