Trait/Object

pureconfig

ConfigConvert

Related Docs: object ConfigConvert | package pureconfig

Permalink

trait ConfigConvert[A] extends ConfigReader[A] with ConfigWriter[A]

Trait for objects capable of reading and writing objects of a given type from and to ConfigValues.

Self Type
ConfigConvert[A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConfigConvert
  2. ConfigWriter
  3. ConfigReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def from(cur: ConfigCursor): Either[ConfigReaderFailures, A]

    Permalink

    Convert the configuration given by a cursor into an instance of A if possible.

    Convert the configuration given by a cursor into an instance of A if possible.

    cur

    The cursor from which the config should be loaded

    returns

    either a list of failures or an object of type A

    Definition Classes
    ConfigReader
  2. abstract def to(a: A): ConfigValue

    Permalink

    Converts a type A to a ConfigValue.

    Converts a type A to a ConfigValue.

    a

    The instance of A to convert

    returns

    The ConfigValue obtained from the A instance

    Definition Classes
    ConfigWriter

Concrete 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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def contramap[B](f: (B) ⇒ A): ConfigWriter[B]

    Permalink

    Applies a function to values before passing them to this writer.

    Applies a function to values before passing them to this writer.

    B

    the input type of the function

    f

    the function to apply to input values

    returns

    a ConfigWriter that writes the results of this writer when the input values are mapped using f.

    Definition Classes
    ConfigWriter
  7. def contramapConfig(f: (ConfigValue) ⇒ ConfigValue): ConfigReader[A]

    Permalink

    Applies a function to configs before passing them to this reader.

    Applies a function to configs before passing them to this reader.

    f

    the function to apply to input configs

    returns

    a ConfigReader returning the results of this reader when the input configs are mapped using f.

    Definition Classes
    ConfigReader
  8. def contramapCursor(f: (ConfigCursor) ⇒ ConfigCursor): ConfigReader[A]

    Permalink

    Applies a function to config cursors before passing them to this reader.

    Applies a function to config cursors before passing them to this reader.

    f

    the function to apply to input config cursors

    returns

    a ConfigReader returning the results of this reader when the input cursors are mapped using f.

    Definition Classes
    ConfigReader
  9. def emap[B](f: (A) ⇒ Either[FailureReason, B]): ConfigReader[B]

    Permalink

    Maps a function that can possibly fail over the results of this reader.

    Maps a function that can possibly fail over the results of this reader.

    B

    the value read by the function in case of success

    f

    the function to map over this reader

    returns

    a ConfigReader returning the results of this reader mapped by f, with the resulting Either flattened as a success or failure.

    Definition Classes
    ConfigReader
  10. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap[B](f: (A) ⇒ ConfigReader[B]): ConfigReader[B]

    Permalink

    Monadically bind a function over the results of this reader.

    Monadically bind a function over the results of this reader.

    B

    the type of the objects readable by the resulting ConfigReader

    f

    the function to bind over this reader

    returns

    a ConfigReader returning the results of this reader bound by f.

    Definition Classes
    ConfigReader
  14. def from(config: ConfigValue): Either[ConfigReaderFailures, A]

    Permalink

    Convert the given configuration into an instance of A if possible.

    Convert the given configuration into an instance of A if possible.

    config

    The configuration from which the config should be loaded

    returns

    either a list of failures or an object of type A

    Definition Classes
    ConfigReader
  15. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  18. def map[B](f: (A) ⇒ B): ConfigReader[B]

    Permalink

    Maps a function over the results of this reader.

    Maps a function over the results of this reader.

    B

    the output type of the function

    f

    the function to map over this reader

    returns

    a ConfigReader returning the results of this reader mapped by f.

    Definition Classes
    ConfigReader
  19. def mapConfig(f: (ConfigValue) ⇒ ConfigValue): ConfigWriter[A]

    Permalink

    Maps a function over the results of this writer.

    Maps a function over the results of this writer.

    f

    the function to map over this writer

    returns

    a ConfigWriter returning the results of this writer mapped by f.

    Definition Classes
    ConfigWriter
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. def orElse[AA >: A, B <: AA](reader: ⇒ ConfigReader[B]): ConfigReader[AA]

    Permalink

    Combines this reader with another, returning the result of the first one that succeeds.

    Combines this reader with another, returning the result of the first one that succeeds.

    AA

    the type of the objects readable by both readers

    reader

    the reader to combine with this one

    returns

    a ConfigReader returning the results of this reader if it succeeds and the results of reader otherwise.

    Definition Classes
    ConfigReader
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def xmap[B](f: (A) ⇒ B, g: (B) ⇒ A): ConfigConvert[B]

    Permalink

    Transforms the values read and written by this ConfigConvert using two functions.

    Transforms the values read and written by this ConfigConvert using two functions.

    B

    the type of the returned ConfigConvert

    f

    the function applied to values after they are read

    g

    the function applied to values before they are written

    returns

    a ConfigConvert that reads and writes values of type B by applying f and g on read and write, respectively.

  30. def zip[B](reader: ConfigReader[B]): ConfigReader[(A, B)]

    Permalink

    Combines this reader with another, returning both results as a pair.

    Combines this reader with another, returning both results as a pair.

    B

    the type of the objects readable by the provided reader

    reader

    the reader to combine with this one

    returns

    a ConfigReader returning the results of both readers as a pair.

    Definition Classes
    ConfigReader

Inherited from ConfigWriter[A]

Inherited from ConfigReader[A]

Inherited from AnyRef

Inherited from Any

Ungrouped