Sequence

zio.Config$.Sequence
final case class Sequence[A](config: Config[A]) extends Composite[Chunk[A]]

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Composite[Chunk[A]]
trait Config[Chunk[A]]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Inherited methods

def ++[B](that: => Config[B])(implicit zippable: Zippable[Chunk[A], B]): Config[Out]

Returns a new config that is the composition of this config and the specified config.

Returns a new config that is the composition of this config and the specified config.

Attributes

Inherited from:
Config
def ??(label: => String): Config[A]

Adds a description to this configuration, which is intended for humans.

Adds a description to this configuration, which is intended for humans.

Attributes

Inherited from:
Config
def map[B](f: Chunk[A] => B): Config[B]

Returns a new config whose structure is the same as this one, but which produces a different Scala value, constructed using the specified function.

Returns a new config whose structure is the same as this one, but which produces a different Scala value, constructed using the specified function.

Attributes

Inherited from:
Config
def mapAttempt[B](f: Chunk[A] => B): Config[B]

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified function, which may throw exceptions that will be translated into validation errors.

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified function, which may throw exceptions that will be translated into validation errors.

Attributes

Inherited from:
Config
def mapOrFail[B](f: Chunk[A] => Either[Error, B]): Config[B]

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified fallible function.

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified fallible function.

Attributes

Inherited from:
Config
def nested(name: => String): Config[A]

Returns a new config that has this configuration nested as a property of the specified name.

Returns a new config that has this configuration nested as a property of the specified name.

Attributes

Inherited from:
Config

Returns an optional version of this config, which will be None if the data is missing from configuration, and Some otherwise.

Returns an optional version of this config, which will be None if the data is missing from configuration, and Some otherwise.

Attributes

Inherited from:
Config
def orElse[A1 >: Chunk[A]](that: => Config[A1]): Config[A1]

A named version of ||.

A named version of ||.

Attributes

Inherited from:
Config
def orElseIf(condition: Error => Boolean): OrElse[A]

Returns configuration which reads from this configuration, but which falls back to the specified configuration if reading from this configuration fails with an error satisfying the specified predicate.

Returns configuration which reads from this configuration, but which falls back to the specified configuration if reading from this configuration fails with an error satisfying the specified predicate.

Attributes

Inherited from:
Config

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Returns a new config that describes a sequence of values, each of which has the structure of this config.

Returns a new config that describes a sequence of values, each of which has the structure of this config.

Attributes

Inherited from:
Config
def validate(message: => String)(f: Chunk[A] => Boolean): Config[A]

Returns a new config that describes the same structure as this one, but which performs validation during loading.

Returns a new config that describes the same structure as this one, but which performs validation during loading.

Attributes

Inherited from:
Config
def validateWith[B](message: => String)(pf: PartialFunction[Chunk[A], B]): Config[B]

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified partial function, failing with the specified validation error if the partial function is not defined.

Returns a new config whose structure is the same as this one, but which may produce a different Scala value, constructed using the specified partial function, failing with the specified validation error if the partial function is not defined.

Attributes

Inherited from:
Config
def withDefault[A1 >: Chunk[A]](default: => A1): Config[A1]

Returns a new config that describes the same structure as this one, but has the specified default value in case the information cannot be found.

Returns a new config that describes the same structure as this one, but has the specified default value in case the information cannot be found.

Attributes

Inherited from:
Config
def zip[B](that: => Config[B])(implicit z: Zippable[Chunk[A], B]): Config[Out]

A named version of ++.

A named version of ++.

Attributes

Inherited from:
Config
def ||[A1 >: Chunk[A]](that: => Config[A1]): Config[A1]

Returns a config whose structure is preferentially described by this config, but which falls back to the specified config if there is an issue reading from this config.

Returns a config whose structure is preferentially described by this config, but which falls back to the specified config if there is an issue reading from this config.

Attributes

Inherited from:
Config