diff --git a/api/ciris/ConfigDecoder$.html b/api/ciris/ConfigDecoder$.html index e6254427..d73bb26a 100644 --- a/api/ciris/ConfigDecoder$.html +++ b/api/ciris/ConfigDecoder$.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigDecoder

Packages

object ConfigDecoder

Source
ConfigDecoder.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. ConfigDecoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 apply[A, B](implicit decoder: ConfigDecoder[A, B]): ConfigDecoder[A, B]

    Returns a ConfigDecoder instance between the two +Ciris v3.7.0 - ciris.ConfigDecoder

    Packages

    object ConfigDecoder

    Source
    ConfigDecoder.scala
    Linear Supertypes
    AnyRef, Any
    Ordering
    1. Grouped
    2. Alphabetic
    3. By Inheritance
    Inherited
    1. ConfigDecoder
    2. AnyRef
    3. Any
    1. Hide All
    2. Show All
    Visibility
    1. Public
    2. Protected

    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 apply[A, B](implicit decoder: ConfigDecoder[A, B]): ConfigDecoder[A, B]

      Returns a ConfigDecoder instance between the two specified types if an instance is available.

    5. final def apply[A]: ConfigDecoder[A, A]

      Returns a new ConfigDecoder for the specified type without performing any kind of decoding.

      Returns a new ConfigDecoder for the specified type without performing any kind of decoding. Alias for the diff --git a/api/ciris/ConfigDecoder.html b/api/ciris/ConfigDecoder.html index c25a9f2d..96127c2c 100644 --- a/api/ciris/ConfigDecoder.html +++ b/api/ciris/ConfigDecoder.html @@ -1,6 +1,6 @@ -Ciris v3.6.0 - ciris.ConfigDecoder

      Packages

      sealed abstract class ConfigDecoder[A, B] extends AnyRef

      Decodes configuration values from a first type to a second type. -

      Source
      ConfigDecoder.scala
      Linear Supertypes
      AnyRef, Any
      Ordering
      1. Alphabetic
      2. By Inheritance
      Inherited
      1. ConfigDecoder
      2. AnyRef
      3. Any
      1. Hide All
      2. Show All
      Visibility
      1. Public
      2. Protected

      Abstract Value Members

      1. abstract def decode(key: Option[ConfigKey], value: A): Either[ConfigError, B]

        Attempts to decode the specified value to the second type.

        Attempts to decode the specified value to the second type.

        The key may be used for improved error messages. The key +Ciris v3.7.0 - ciris.ConfigDecoder

        Packages

        sealed abstract class ConfigDecoder[A, B] extends AnyRef

        Decodes configuration values from a first type to a second type. +

        Source
        ConfigDecoder.scala
        Linear Supertypes
        AnyRef, Any
        Ordering
        1. Alphabetic
        2. By Inheritance
        Inherited
        1. ConfigDecoder
        2. AnyRef
        3. Any
        1. Hide All
        2. Show All
        Visibility
        1. Public
        2. Protected

        Abstract Value Members

        1. abstract def decode(key: Option[ConfigKey], value: A): Either[ConfigError, B]

          Attempts to decode the specified value to the second type.

          Attempts to decode the specified value to the second type.

          The key may be used for improved error messages. The key is present for a single configuration value, and missing for default values and composed values.

          See also

          ConfigError.decode for creating decode errors

        Concrete 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 as[C](implicit decoder: ConfigDecoder[B, C]): ConfigDecoder[A, C]

          Returns a new ConfigDecoder which attempts to decode diff --git a/api/ciris/ConfigError$.html b/api/ciris/ConfigError$.html index eaf02309..6c8a101c 100644 --- a/api/ciris/ConfigError$.html +++ b/api/ciris/ConfigError$.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigError

          Packages

          object ConfigError

          Source
          ConfigError.scala
          Linear Supertypes
          AnyRef, Any
          Ordering
          1. Grouped
          2. Alphabetic
          3. By Inheritance
          Inherited
          1. ConfigError
          2. AnyRef
          3. Any
          1. Hide All
          2. Show All
          Visibility
          1. Public
          2. Protected

          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 apply(message: => String): ConfigError

            Returns a new ConfigError using the specified message.

            Returns a new ConfigError using the specified message.

            If the specified message might contain sensitive details, +Ciris v3.7.0 - ciris.ConfigError

            Packages

            object ConfigError

            Source
            ConfigError.scala
            Linear Supertypes
            AnyRef, Any
            Ordering
            1. Grouped
            2. Alphabetic
            3. By Inheritance
            Inherited
            1. ConfigError
            2. AnyRef
            3. Any
            1. Hide All
            2. Show All
            Visibility
            1. Public
            2. Protected

            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 apply(message: => String): ConfigError

              Returns a new ConfigError using the specified message.

              Returns a new ConfigError using the specified message.

              If the specified message might contain sensitive details, then use ConfigError.sensitive instead to create an error which is capable of redacting sensitive details.

            5. final def asInstanceOf[T0]: T0
              Definition Classes
              Any
            6. def clone(): AnyRef
              Attributes
              protected[lang]
              Definition Classes
              AnyRef
              Annotations
              @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
            7. implicit final val configErrorEq: Eq[ConfigError]

            8. implicit final val configErrorShow: Show[ConfigError]

            9. final def decode[A](typeName: String, key: Option[ConfigKey], value: A)(implicit show: Show[A]): ConfigError

              Returns a new ConfigError for when the specified value diff --git a/api/ciris/ConfigError.html b/api/ciris/ConfigError.html index 7ec936ba..43e9df6e 100644 --- a/api/ciris/ConfigError.html +++ b/api/ciris/ConfigError.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigError

              Packages

              sealed abstract class ConfigError extends AnyRef

              Error which occurred while loading or decoding configuration values.

              Configuration errors can be created using ConfigError.apply, or +Ciris v3.7.0 - ciris.ConfigError

              Packages

              sealed abstract class ConfigError extends AnyRef

              Error which occurred while loading or decoding configuration values.

              Configuration errors can be created using ConfigError.apply, or with ConfigError.sensitive if the error might contain sensitive details. When writing ConfigDecoders, ConfigError.decode can be useful for creating decoding errors.

              Errors for a single configuration value, which might be retrieved @@ -11,7 +11,7 @@ ConfigValue#secret is used, sensitive details are redacted and the value is wrapped in Secret to prevent it from being shown.

              A Throwable representation of a ConfigError can be retrieved using ConfigError#throwable. -

              Source
              ConfigError.scala
              Example:
              1. scala> val error = ConfigError("error")
                +

              Source
              ConfigError.scala
              Example:
              1. scala> val error = ConfigError("error")
                 error: ConfigError = ConfigError(error)
                 
                 scala> val sensitive = ConfigError.sensitive("error", "redacted")
                diff --git a/api/ciris/ConfigException$.html b/api/ciris/ConfigException$.html
                index 14a8696f..76239084 100644
                --- a/api/ciris/ConfigException$.html
                +++ b/api/ciris/ConfigException$.html
                @@ -1,2 +1,2 @@
                -Ciris v3.6.0 - ciris.ConfigException

                Packages

                object ConfigException extends Serializable

                Source
                ConfigException.scala
                Linear Supertypes
                Serializable, AnyRef, Any
                Ordering
                1. Alphabetic
                2. By Inheritance
                Inherited
                1. ConfigException
                2. Serializable
                3. AnyRef
                4. Any
                1. Hide All
                2. Show All
                Visibility
                1. Public
                2. Protected

                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]) @HotSpotIntrinsicCandidate() @native()
                6. implicit final val configExceptionEq: Eq[ConfigException]
                7. implicit final val configExceptionShow: Show[ConfigException]
                8. final def eq(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                9. def equals(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef → Any
                10. final def getClass(): Class[_ <: AnyRef]
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                11. def hashCode(): Int
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                12. final def isInstanceOf[T0]: Boolean
                  Definition Classes
                  Any
                13. final def ne(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                14. final def notify(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                15. final def notifyAll(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                16. final def synchronized[T0](arg0: => T0): T0
                  Definition Classes
                  AnyRef
                17. def toString(): String
                  Definition Classes
                  AnyRef → Any
                18. final def wait(arg0: Long, arg1: Int): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])
                19. final def wait(arg0: Long): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException]) @native()
                20. final def wait(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])

                Deprecated Value Members

                1. def finalize(): Unit
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.Throwable]) @Deprecated
                  Deprecated

                  (Since version 9)

                Inherited from Serializable

                Inherited from AnyRef

                Inherited from Any

                Ungrouped

                +Ciris v3.7.0 - ciris.ConfigException

                Packages

                object ConfigException extends Serializable

                Source
                ConfigException.scala
                Linear Supertypes
                Serializable, AnyRef, Any
                Ordering
                1. Alphabetic
                2. By Inheritance
                Inherited
                1. ConfigException
                2. Serializable
                3. AnyRef
                4. Any
                1. Hide All
                2. Show All
                Visibility
                1. Public
                2. Protected

                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]) @HotSpotIntrinsicCandidate() @native()
                6. implicit final val configExceptionEq: Eq[ConfigException]
                7. implicit final val configExceptionShow: Show[ConfigException]
                8. final def eq(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                9. def equals(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef → Any
                10. final def getClass(): Class[_ <: AnyRef]
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                11. def hashCode(): Int
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                12. final def isInstanceOf[T0]: Boolean
                  Definition Classes
                  Any
                13. final def ne(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                14. final def notify(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                15. final def notifyAll(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                16. final def synchronized[T0](arg0: => T0): T0
                  Definition Classes
                  AnyRef
                17. def toString(): String
                  Definition Classes
                  AnyRef → Any
                18. final def wait(arg0: Long, arg1: Int): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])
                19. final def wait(arg0: Long): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException]) @native()
                20. final def wait(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])

                Deprecated Value Members

                1. def finalize(): Unit
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.Throwable]) @Deprecated
                  Deprecated

                  (Since version 9)

                Inherited from Serializable

                Inherited from AnyRef

                Inherited from Any

                Ungrouped

                diff --git a/api/ciris/ConfigException.html b/api/ciris/ConfigException.html index 52d266b6..655166ab 100644 --- a/api/ciris/ConfigException.html +++ b/api/ciris/ConfigException.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.ConfigException

                Packages

                final case class ConfigException(error: ConfigError) extends RuntimeException with Product with Serializable

                Source
                ConfigException.scala
                Linear Supertypes
                Product, Equals, RuntimeException, Exception, Throwable, Serializable, AnyRef, Any
                Ordering
                1. Alphabetic
                2. By Inheritance
                Inherited
                1. ConfigException
                2. Product
                3. Equals
                4. RuntimeException
                5. Exception
                6. Throwable
                7. Serializable
                8. AnyRef
                9. Any
                1. Hide All
                2. Show All
                Visibility
                1. Public
                2. Protected

                Instance Constructors

                1. new ConfigException(error: ConfigError)

                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 addSuppressed(arg0: Throwable): Unit
                  Definition Classes
                  Throwable
                5. final def asInstanceOf[T0]: T0
                  Definition Classes
                  Any
                6. def clone(): AnyRef
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                7. final def eq(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                8. val error: ConfigError
                9. final def fillInStackTrace(): Throwable
                  Definition Classes
                  ConfigException → Throwable
                10. def getCause(): Throwable
                  Definition Classes
                  Throwable
                11. final def getClass(): Class[_ <: AnyRef]
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                12. def getLocalizedMessage(): String
                  Definition Classes
                  Throwable
                13. final def getMessage(): String
                  Definition Classes
                  ConfigException → Throwable
                14. def getStackTrace(): Array[StackTraceElement]
                  Definition Classes
                  Throwable
                15. final def getSuppressed(): Array[Throwable]
                  Definition Classes
                  Throwable
                16. def initCause(arg0: Throwable): Throwable
                  Definition Classes
                  Throwable
                17. final def isInstanceOf[T0]: Boolean
                  Definition Classes
                  Any
                18. final def message: String
                19. final def ne(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                20. final def notify(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                21. final def notifyAll(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                22. def printStackTrace(arg0: PrintWriter): Unit
                  Definition Classes
                  Throwable
                23. def printStackTrace(arg0: PrintStream): Unit
                  Definition Classes
                  Throwable
                24. def printStackTrace(): Unit
                  Definition Classes
                  Throwable
                25. def productElementNames: Iterator[String]
                  Definition Classes
                  Product
                26. def setStackTrace(arg0: Array[StackTraceElement]): Unit
                  Definition Classes
                  Throwable
                27. final def synchronized[T0](arg0: => T0): T0
                  Definition Classes
                  AnyRef
                28. def toString(): String
                  Definition Classes
                  Throwable → AnyRef → Any
                29. final def wait(arg0: Long, arg1: Int): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])
                30. final def wait(arg0: Long): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException]) @native()
                31. final def wait(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])

                Deprecated Value Members

                1. def finalize(): Unit
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.Throwable]) @Deprecated
                  Deprecated

                  (Since version 9)

                Inherited from Product

                Inherited from Equals

                Inherited from RuntimeException

                Inherited from Exception

                Inherited from Throwable

                Inherited from Serializable

                Inherited from AnyRef

                Inherited from Any

                Ungrouped

                +Ciris v3.7.0 - ciris.ConfigException

                Packages

                final case class ConfigException(error: ConfigError) extends RuntimeException with Product with Serializable

                Source
                ConfigException.scala
                Linear Supertypes
                Product, Equals, RuntimeException, Exception, Throwable, Serializable, AnyRef, Any
                Ordering
                1. Alphabetic
                2. By Inheritance
                Inherited
                1. ConfigException
                2. Product
                3. Equals
                4. RuntimeException
                5. Exception
                6. Throwable
                7. Serializable
                8. AnyRef
                9. Any
                1. Hide All
                2. Show All
                Visibility
                1. Public
                2. Protected

                Instance Constructors

                1. new ConfigException(error: ConfigError)

                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 addSuppressed(arg0: Throwable): Unit
                  Definition Classes
                  Throwable
                5. final def asInstanceOf[T0]: T0
                  Definition Classes
                  Any
                6. def clone(): AnyRef
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                7. final def eq(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                8. val error: ConfigError
                9. final def fillInStackTrace(): Throwable
                  Definition Classes
                  ConfigException → Throwable
                10. def getCause(): Throwable
                  Definition Classes
                  Throwable
                11. final def getClass(): Class[_ <: AnyRef]
                  Definition Classes
                  AnyRef → Any
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                12. def getLocalizedMessage(): String
                  Definition Classes
                  Throwable
                13. final def getMessage(): String
                  Definition Classes
                  ConfigException → Throwable
                14. def getStackTrace(): Array[StackTraceElement]
                  Definition Classes
                  Throwable
                15. final def getSuppressed(): Array[Throwable]
                  Definition Classes
                  Throwable
                16. def initCause(arg0: Throwable): Throwable
                  Definition Classes
                  Throwable
                17. final def isInstanceOf[T0]: Boolean
                  Definition Classes
                  Any
                18. final def message: String
                19. final def ne(arg0: AnyRef): Boolean
                  Definition Classes
                  AnyRef
                20. final def notify(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                21. final def notifyAll(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @HotSpotIntrinsicCandidate() @native()
                22. def printStackTrace(arg0: PrintWriter): Unit
                  Definition Classes
                  Throwable
                23. def printStackTrace(arg0: PrintStream): Unit
                  Definition Classes
                  Throwable
                24. def printStackTrace(): Unit
                  Definition Classes
                  Throwable
                25. def productElementNames: Iterator[String]
                  Definition Classes
                  Product
                26. def setStackTrace(arg0: Array[StackTraceElement]): Unit
                  Definition Classes
                  Throwable
                27. final def synchronized[T0](arg0: => T0): T0
                  Definition Classes
                  AnyRef
                28. def toString(): String
                  Definition Classes
                  Throwable → AnyRef → Any
                29. final def wait(arg0: Long, arg1: Int): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])
                30. final def wait(arg0: Long): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException]) @native()
                31. final def wait(): Unit
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.InterruptedException])

                Deprecated Value Members

                1. def finalize(): Unit
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.Throwable]) @Deprecated
                  Deprecated

                  (Since version 9)

                Inherited from Product

                Inherited from Equals

                Inherited from RuntimeException

                Inherited from Exception

                Inherited from Throwable

                Inherited from Serializable

                Inherited from AnyRef

                Inherited from Any

                Ungrouped

                diff --git a/api/ciris/ConfigKey$.html b/api/ciris/ConfigKey$.html index 9e3f1e3b..d8902a29 100644 --- a/api/ciris/ConfigKey$.html +++ b/api/ciris/ConfigKey$.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigKey

                Packages

                object ConfigKey extends ConfigKeyRuntimePlatform

                Source
                ConfigKey.scala
                Linear Supertypes
                ConfigKeyRuntimePlatform, AnyRef, Any
                Ordering
                1. Grouped
                2. Alphabetic
                3. By Inheritance
                Inherited
                1. ConfigKey
                2. ConfigKeyRuntimePlatform
                3. AnyRef
                4. Any
                1. Hide All
                2. Show All
                Visibility
                1. Public
                2. Protected

                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 apply(description: => String): ConfigKey

                  Returns a new ConfigKey with the specified description.

                5. final def asInstanceOf[T0]: T0
                  Definition Classes
                  Any
                6. def clone(): AnyRef
                  Attributes
                  protected[lang]
                  Definition Classes
                  AnyRef
                  Annotations
                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                7. implicit final val configKeyEq: Eq[ConfigKey]

                8. implicit final val configKeyShow: Show[ConfigKey]

                9. final def env(name: String): ConfigKey

                  Returns a new ConfigKey for the specified environment variable.

                  Returns a new ConfigKey for the specified environment variable. +Ciris v3.7.0 - ciris.ConfigKey

                  Packages

                  object ConfigKey extends ConfigKeyRuntimePlatform

                  Source
                  ConfigKey.scala
                  Linear Supertypes
                  ConfigKeyRuntimePlatform, AnyRef, Any
                  Ordering
                  1. Grouped
                  2. Alphabetic
                  3. By Inheritance
                  Inherited
                  1. ConfigKey
                  2. ConfigKeyRuntimePlatform
                  3. AnyRef
                  4. Any
                  1. Hide All
                  2. Show All
                  Visibility
                  1. Public
                  2. Protected

                  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 apply(description: => String): ConfigKey

                    Returns a new ConfigKey with the specified description.

                  5. final def asInstanceOf[T0]: T0
                    Definition Classes
                    Any
                  6. def clone(): AnyRef
                    Attributes
                    protected[lang]
                    Definition Classes
                    AnyRef
                    Annotations
                    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                  7. implicit final val configKeyEq: Eq[ConfigKey]

                  8. implicit final val configKeyShow: Show[ConfigKey]

                  9. final def env(name: String): ConfigKey

                    Returns a new ConfigKey for the specified environment variable.

                    Returns a new ConfigKey for the specified environment variable.

                    Example:
                    1. scala> val apiKey = ConfigKey.env("API_KEY")
                       apiKey: ConfigKey = ConfigKey(environment variable API_KEY)
                       
                      diff --git a/api/ciris/ConfigKey.html b/api/ciris/ConfigKey.html
                      index 5649d420..6d7f7aa4 100644
                      --- a/api/ciris/ConfigKey.html
                      +++ b/api/ciris/ConfigKey.html
                      @@ -1,6 +1,6 @@
                      -Ciris v3.6.0 - ciris.ConfigKey

                      Packages

                      sealed abstract class ConfigKey extends AnyRef

                      Provides a description of a key used for loading configuration values. -

                      Source
                      ConfigKey.scala
                      Example:
                      1. scala> val apiKey = ConfigKey.env("API_KEY")
                        +Ciris v3.7.0 - ciris.ConfigKey

                        Packages

                        sealed abstract class ConfigKey extends AnyRef

                        Provides a description of a key used for loading configuration values. +

                        Source
                        ConfigKey.scala
                        Example:
                        1. scala> val apiKey = ConfigKey.env("API_KEY")
                           apiKey: ConfigKey = ConfigKey(environment variable API_KEY)
                           
                           scala> apiKey.description
                          diff --git a/api/ciris/ConfigValue$$Par$$Ops.html b/api/ciris/ConfigValue$$Par$$Ops.html
                          index c8cd8d75..f4d4f871 100644
                          --- a/api/ciris/ConfigValue$$Par$$Ops.html
                          +++ b/api/ciris/ConfigValue$$Par$$Ops.html
                          @@ -1,2 +1,2 @@
                          -Ciris v3.6.0 - ciris.ConfigValue.Par.Ops

                          Packages

                          implicit final class Ops[F[_], A] extends AnyVal

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          AnyVal, Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Ops
                          2. AnyVal
                          3. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Value Members

                          1. final def !=(arg0: Any): Boolean
                            Definition Classes
                            Any
                          2. final def ##: Int
                            Definition Classes
                            Any
                          3. final def ==(arg0: Any): Boolean
                            Definition Classes
                            Any
                          4. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          5. def getClass(): Class[_ <: AnyVal]
                            Definition Classes
                            AnyVal → Any
                          6. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          7. def toString(): String
                            Definition Classes
                            Any
                          8. final def unwrap: ConfigValue[F, A]

                            Returns the underlying ConfigValue for the instance.

                          Inherited from AnyVal

                          Inherited from Any

                          Ungrouped

                          +Ciris v3.7.0 - ciris.ConfigValue.Par.Ops

                          Packages

                          implicit final class Ops[F[_], A] extends AnyVal

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          AnyVal, Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Ops
                          2. AnyVal
                          3. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Value Members

                          1. final def !=(arg0: Any): Boolean
                            Definition Classes
                            Any
                          2. final def ##: Int
                            Definition Classes
                            Any
                          3. final def ==(arg0: Any): Boolean
                            Definition Classes
                            Any
                          4. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          5. def getClass(): Class[_ <: AnyVal]
                            Definition Classes
                            AnyVal → Any
                          6. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          7. def toString(): String
                            Definition Classes
                            Any
                          8. final def unwrap: ConfigValue[F, A]

                            Returns the underlying ConfigValue for the instance.

                          Inherited from AnyVal

                          Inherited from Any

                          Ungrouped

                          diff --git a/api/ciris/ConfigValue$$Par$$Tag.html b/api/ciris/ConfigValue$$Par$$Tag.html index e0169e2c..1f34b2d5 100644 --- a/api/ciris/ConfigValue$$Par$$Tag.html +++ b/api/ciris/ConfigValue$$Par$$Tag.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.ConfigValue.Par.Tag

                          Packages

                          sealed trait Tag extends Any

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Tag
                          2. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Abstract Value Members

                          1. abstract def getClass(): Class[_ <: AnyRef]
                            Definition Classes
                            Any

                          Concrete Value Members

                          1. final def !=(arg0: Any): Boolean
                            Definition Classes
                            Any
                          2. final def ##: Int
                            Definition Classes
                            Any
                          3. final def ==(arg0: Any): Boolean
                            Definition Classes
                            Any
                          4. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          5. def equals(arg0: Any): Boolean
                            Definition Classes
                            Any
                          6. def hashCode(): Int
                            Definition Classes
                            Any
                          7. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          8. def toString(): String
                            Definition Classes
                            Any

                          Inherited from Any

                          Ungrouped

                          +Ciris v3.7.0 - ciris.ConfigValue.Par.Tag

                          Packages

                          sealed trait Tag extends Any

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Tag
                          2. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Abstract Value Members

                          1. abstract def getClass(): Class[_ <: AnyRef]
                            Definition Classes
                            Any

                          Concrete Value Members

                          1. final def !=(arg0: Any): Boolean
                            Definition Classes
                            Any
                          2. final def ##: Int
                            Definition Classes
                            Any
                          3. final def ==(arg0: Any): Boolean
                            Definition Classes
                            Any
                          4. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          5. def equals(arg0: Any): Boolean
                            Definition Classes
                            Any
                          6. def hashCode(): Int
                            Definition Classes
                            Any
                          7. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          8. def toString(): String
                            Definition Classes
                            Any

                          Inherited from Any

                          Ungrouped

                          diff --git a/api/ciris/ConfigValue$$Par$.html b/api/ciris/ConfigValue$$Par$.html index 8e892b4c..56704a31 100644 --- a/api/ciris/ConfigValue$$Par$.html +++ b/api/ciris/ConfigValue$$Par$.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.ConfigValue.Par

                          Packages

                          object Par

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          AnyRef, Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Par
                          2. AnyRef
                          3. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Type Members

                          1. abstract type Base
                          2. implicit final class Ops[F[_], A] extends AnyVal
                          3. sealed trait Tag extends Any
                          4. abstract type Type[F[_], A] <: Base with Tag

                          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 apply[F[_], A](value: ConfigValue[F, A]): Par[F, A]

                            Returns a Par instance for the specified ConfigValue.

                          5. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          6. def clone(): AnyRef
                            Attributes
                            protected[lang]
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                          7. final def eq(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef
                          8. def equals(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef → Any
                          9. final def getClass(): Class[_ <: AnyRef]
                            Definition Classes
                            AnyRef → Any
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          10. def hashCode(): Int
                            Definition Classes
                            AnyRef → Any
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          11. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          12. final def ne(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef
                          13. final def notify(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          14. final def notifyAll(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          15. final def synchronized[T0](arg0: => T0): T0
                            Definition Classes
                            AnyRef
                          16. def toString(): String
                            Definition Classes
                            AnyRef → Any
                          17. final def wait(arg0: Long, arg1: Int): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException])
                          18. final def wait(arg0: Long): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException]) @native()
                          19. final def wait(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException])

                          Deprecated Value Members

                          1. def finalize(): Unit
                            Attributes
                            protected[lang]
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.Throwable]) @Deprecated
                            Deprecated

                            (Since version 9)

                          Inherited from AnyRef

                          Inherited from Any

                          Ungrouped

                          +Ciris v3.7.0 - ciris.ConfigValue.Par

                          Packages

                          object Par

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          AnyRef, Any
                          Ordering
                          1. Alphabetic
                          2. By Inheritance
                          Inherited
                          1. Par
                          2. AnyRef
                          3. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Type Members

                          1. abstract type Base
                          2. implicit final class Ops[F[_], A] extends AnyVal
                          3. sealed trait Tag extends Any
                          4. abstract type Type[F[_], A] <: Base with Tag

                          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 apply[F[_], A](value: ConfigValue[F, A]): Par[F, A]

                            Returns a Par instance for the specified ConfigValue.

                          5. final def asInstanceOf[T0]: T0
                            Definition Classes
                            Any
                          6. def clone(): AnyRef
                            Attributes
                            protected[lang]
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                          7. final def eq(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef
                          8. def equals(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef → Any
                          9. final def getClass(): Class[_ <: AnyRef]
                            Definition Classes
                            AnyRef → Any
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          10. def hashCode(): Int
                            Definition Classes
                            AnyRef → Any
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          11. final def isInstanceOf[T0]: Boolean
                            Definition Classes
                            Any
                          12. final def ne(arg0: AnyRef): Boolean
                            Definition Classes
                            AnyRef
                          13. final def notify(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          14. final def notifyAll(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @HotSpotIntrinsicCandidate() @native()
                          15. final def synchronized[T0](arg0: => T0): T0
                            Definition Classes
                            AnyRef
                          16. def toString(): String
                            Definition Classes
                            AnyRef → Any
                          17. final def wait(arg0: Long, arg1: Int): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException])
                          18. final def wait(arg0: Long): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException]) @native()
                          19. final def wait(): Unit
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.InterruptedException])

                          Deprecated Value Members

                          1. def finalize(): Unit
                            Attributes
                            protected[lang]
                            Definition Classes
                            AnyRef
                            Annotations
                            @throws(classOf[java.lang.Throwable]) @Deprecated
                            Deprecated

                            (Since version 9)

                          Inherited from AnyRef

                          Inherited from Any

                          Ungrouped

                          diff --git a/api/ciris/ConfigValue$.html b/api/ciris/ConfigValue$.html index 6fd5772b..8cf5f964 100644 --- a/api/ciris/ConfigValue$.html +++ b/api/ciris/ConfigValue$.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigValue

                          Packages

                          object ConfigValue

                          Source
                          ConfigValue.scala
                          Linear Supertypes
                          AnyRef, Any
                          Ordering
                          1. Grouped
                          2. Alphabetic
                          3. By Inheritance
                          Inherited
                          1. ConfigValue
                          2. AnyRef
                          3. Any
                          1. Hide All
                          2. Show All
                          Visibility
                          1. Public
                          2. Protected

                          Type Members

                          1. final type Par[F[_], A] = Type[F, A]

                            Newtype for parallel composition of configuration values.

                          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. final def async[F[_], A](k: ((Either[Throwable, ConfigValue[F, A]]) => Unit) => F[Option[F[Unit]]]): ConfigValue[F, A]

                            Returns a new ConfigValue which loads a configuration +Ciris v3.7.0 - ciris.ConfigValue

                            Packages

                            object ConfigValue

                            Source
                            ConfigValue.scala
                            Linear Supertypes
                            AnyRef, Any
                            Ordering
                            1. Grouped
                            2. Alphabetic
                            3. By Inheritance
                            Inherited
                            1. ConfigValue
                            2. AnyRef
                            3. Any
                            1. Hide All
                            2. Show All
                            Visibility
                            1. Public
                            2. Protected

                            Type Members

                            1. final type Par[F[_], A] = Type[F, A]

                              Newtype for parallel composition of configuration values.

                            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. final def async[F[_], A](k: ((Either[Throwable, ConfigValue[F, A]]) => Unit) => F[Option[F[Unit]]]): ConfigValue[F, A]

                              Returns a new ConfigValue which loads a configuration value using a callback.

                            6. final def async_[F[_], A](k: ((Either[Throwable, ConfigValue[F, A]]) => Unit) => Unit): ConfigValue[F, A]

                              Returns a new ConfigValue which loads a configuration value using a callback.

                            7. final def blocking[F[_], A](value: => ConfigValue[F, A]): ConfigValue[F, A]

                              Returns a new ConfigValue which loads the specified blocking value.

                            8. def clone(): AnyRef
                              Attributes
                              protected[lang]
                              Definition Classes
                              AnyRef
                              Annotations
                              @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                            9. implicit final def configValueFlatMap[F[_]]: FlatMap[[β$0$]ConfigValue[F, β$0$]]

                            10. implicit final def configValueNonEmptyParallel[G[_]]: Aux[[β$4$]ConfigValue[G, β$4$], [β$5$]Type[G, β$5$]]

                            11. implicit final def configValueParApply[F[_]]: Apply[[β$2$]Type[F, β$2$]]

                            12. final def default[A](value: A): ConfigValue[Effect, A]

                              Returns a new ConfigValue with the specified diff --git a/api/ciris/ConfigValue.html b/api/ciris/ConfigValue.html index 317c8496..d7d83445 100644 --- a/api/ciris/ConfigValue.html +++ b/api/ciris/ConfigValue.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.ConfigValue

                              Packages

                              sealed abstract class ConfigValue[+F[_], A] extends AnyRef

                              Represents a configuration value or a composition of multiple values.

                              If a configuration value is missing, we can use ConfigValue#or to +Ciris v3.7.0 - ciris.ConfigValue

                              Packages

                              sealed abstract class ConfigValue[+F[_], A] extends AnyRef

                              Represents a configuration value or a composition of multiple values.

                              If a configuration value is missing, we can use ConfigValue#or to try and load the value from elsewhere. ConfigValue#default can be used to set a default value if all other values are missing. If the value is optional, ConfigValue#option can be used to default @@ -19,7 +19,7 @@ loads the value using a specified effect type. If a ConfigValue contains Resources for loading the configuration, there is also the option to return a Resource with ConfigValue#resource. -

                              Source
                              ConfigValue.scala
                              Example:
                              1. scala> import cats.syntax.all._
                                +

                              Source
                              ConfigValue.scala
                              Example:
                              1. scala> import cats.syntax.all._
                                 import cats.syntax.all._
                                 
                                 scala> case class Config(maxRetries: Int, apiKey: Option[Secret[String]])
                                diff --git a/api/ciris/Secret$.html b/api/ciris/Secret$.html
                                index e698e564..6dc7769d 100644
                                --- a/api/ciris/Secret$.html
                                +++ b/api/ciris/Secret$.html
                                @@ -1,5 +1,5 @@
                                -Ciris v3.6.0 - ciris.Secret

                                Packages

                                object Secret

                                Source
                                Secret.scala
                                Linear Supertypes
                                AnyRef, Any
                                Ordering
                                1. Grouped
                                2. Alphabetic
                                3. By Inheritance
                                Inherited
                                1. Secret
                                2. AnyRef
                                3. Any
                                1. Hide All
                                2. Show All
                                Visibility
                                1. Public
                                2. Protected

                                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 apply[A](value: A)(implicit show: Show[A]): Secret[A]

                                  Returns a new Secret for the specified configuration value.

                                  Returns a new Secret for the specified configuration value.

                                  The Secret#valueHash will be calculated using the shown value. +Ciris v3.7.0 - ciris.Secret

                                  Packages

                                  object Secret

                                  Source
                                  Secret.scala
                                  Linear Supertypes
                                  AnyRef, Any
                                  Ordering
                                  1. Grouped
                                  2. Alphabetic
                                  3. By Inheritance
                                  Inherited
                                  1. Secret
                                  2. AnyRef
                                  3. Any
                                  1. Hide All
                                  2. Show All
                                  Visibility
                                  1. Public
                                  2. Protected

                                  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 apply[A](value: A)(implicit show: Show[A]): Secret[A]

                                    Returns a new Secret for the specified configuration value.

                                    Returns a new Secret for the specified configuration value.

                                    The Secret#valueHash will be calculated using the shown value.

                                    Example:
                                    1. scala> import cats.syntax.all._
                                       import cats.syntax.all._
                                       
                                      diff --git a/api/ciris/Secret.html b/api/ciris/Secret.html
                                      index 56d32a01..b91e94a1 100644
                                      --- a/api/ciris/Secret.html
                                      +++ b/api/ciris/Secret.html
                                      @@ -1,11 +1,11 @@
                                      -Ciris v3.6.0 - ciris.Secret

                                      Packages

                                      sealed abstract class Secret[+A] extends AnyRef

                                      Secret configuration value which might contain sensitive details.

                                      When a secret configuration value is shown, the value is replaced +Ciris v3.7.0 - ciris.Secret

                                      Packages

                                      sealed abstract class Secret[+A] extends AnyRef

                                      Secret configuration value which might contain sensitive details.

                                      When a secret configuration value is shown, the value is replaced by the first 7 characters of the SHA-1 hash for the value. This short SHA-1 hash is available as Secret#valueShortHash, and the full SHA-1 hash is available as Secret#valueHash. The underlying configuration value is available as Secret#value.

                                      ConfigValue#secret can be used to wrap a value in Secret, while also redacting sentitive details from errors. -

                                      Source
                                      Secret.scala
                                      Example:
                                      1. scala> import cats.syntax.all._
                                        +

                                      Source
                                      Secret.scala
                                      Example:
                                      1. scala> import cats.syntax.all._
                                         import cats.syntax.all._
                                         
                                         scala> val secret = Secret(123)
                                        diff --git a/api/ciris/UseOnceSecret$.html b/api/ciris/UseOnceSecret$.html
                                        index fb9c1f10..7dd22ba0 100644
                                        --- a/api/ciris/UseOnceSecret$.html
                                        +++ b/api/ciris/UseOnceSecret$.html
                                        @@ -1,3 +1,3 @@
                                        -Ciris v3.6.0 - ciris.UseOnceSecret

                                        Packages

                                        object UseOnceSecret

                                        Source
                                        UseOnceSecret.scala
                                        Linear Supertypes
                                        AnyRef, Any
                                        Ordering
                                        1. Alphabetic
                                        2. By Inheritance
                                        Inherited
                                        1. UseOnceSecret
                                        2. AnyRef
                                        3. Any
                                        1. Hide All
                                        2. Show All
                                        Visibility
                                        1. Public
                                        2. Protected

                                        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 apply[F[_]](secret: Array[Char])(implicit F: Sync[F]): F[UseOnceSecret]

                                          Returns an effect which creates a new UseOnceSecret +Ciris v3.7.0 - ciris.UseOnceSecret

                                          Packages

                                          object UseOnceSecret

                                          Source
                                          UseOnceSecret.scala
                                          Linear Supertypes
                                          AnyRef, Any
                                          Ordering
                                          1. Alphabetic
                                          2. By Inheritance
                                          Inherited
                                          1. UseOnceSecret
                                          2. AnyRef
                                          3. Any
                                          1. Hide All
                                          2. Show All
                                          Visibility
                                          1. Public
                                          2. Protected

                                          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 apply[F[_]](secret: Array[Char])(implicit F: Sync[F]): F[UseOnceSecret]

                                            Returns an effect which creates a new UseOnceSecret for the specified secret configuration value.

                                          5. final def asInstanceOf[T0]: T0
                                            Definition Classes
                                            Any
                                          6. def clone(): AnyRef
                                            Attributes
                                            protected[lang]
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                          7. final def eq(arg0: AnyRef): Boolean
                                            Definition Classes
                                            AnyRef
                                          8. def equals(arg0: AnyRef): Boolean
                                            Definition Classes
                                            AnyRef → Any
                                          9. final def getClass(): Class[_ <: AnyRef]
                                            Definition Classes
                                            AnyRef → Any
                                            Annotations
                                            @HotSpotIntrinsicCandidate() @native()
                                          10. def hashCode(): Int
                                            Definition Classes
                                            AnyRef → Any
                                            Annotations
                                            @HotSpotIntrinsicCandidate() @native()
                                          11. final def isInstanceOf[T0]: Boolean
                                            Definition Classes
                                            Any
                                          12. final def ne(arg0: AnyRef): Boolean
                                            Definition Classes
                                            AnyRef
                                          13. final def notify(): Unit
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @HotSpotIntrinsicCandidate() @native()
                                          14. final def notifyAll(): Unit
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @HotSpotIntrinsicCandidate() @native()
                                          15. final def synchronized[T0](arg0: => T0): T0
                                            Definition Classes
                                            AnyRef
                                          16. def toString(): String
                                            Definition Classes
                                            AnyRef → Any
                                          17. final def wait(arg0: Long, arg1: Int): Unit
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @throws(classOf[java.lang.InterruptedException])
                                          18. final def wait(arg0: Long): Unit
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @throws(classOf[java.lang.InterruptedException]) @native()
                                          19. final def wait(): Unit
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @throws(classOf[java.lang.InterruptedException])

                                          Deprecated Value Members

                                          1. def finalize(): Unit
                                            Attributes
                                            protected[lang]
                                            Definition Classes
                                            AnyRef
                                            Annotations
                                            @throws(classOf[java.lang.Throwable]) @Deprecated
                                            Deprecated

                                            (Since version 9)

                                          Inherited from AnyRef

                                          Inherited from Any

                                          Ungrouped

                                          diff --git a/api/ciris/UseOnceSecret.html b/api/ciris/UseOnceSecret.html index 1a07275e..367e662c 100644 --- a/api/ciris/UseOnceSecret.html +++ b/api/ciris/UseOnceSecret.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris.UseOnceSecret

                                          Packages

                                          sealed abstract class UseOnceSecret extends AnyRef

                                          Secret configuration value which can only be used once +Ciris v3.7.0 - ciris.UseOnceSecret

                                          Packages

                                          sealed abstract class UseOnceSecret extends AnyRef

                                          Secret configuration value which can only be used once before being nullified.

                                          UseOnceSecret.apply wraps an Array[Char] ensuring the array is only accessed once and that the array is nullified once used. The array can be accessed with @@ -7,7 +7,7 @@ Resource using UseOnceSecret#resource.

                                          ConfigValue#useOnceSecret can be used to wrap a value in UseOnceSecret, while also redacting sentitive details from errors. -

                                          Source
                                          UseOnceSecret.scala
                                          Linear Supertypes
                                          AnyRef, Any
                                          Ordering
                                          1. Alphabetic
                                          2. By Inheritance
                                          Inherited
                                          1. UseOnceSecret
                                          2. AnyRef
                                          3. Any
                                          1. Hide All
                                          2. Show All
                                          Visibility
                                          1. Public
                                          2. Protected

                                          Abstract Value Members

                                          1. abstract def resource[F[_]](implicit F: Sync[F]): Resource[F, Array[Char]]

                                            Returns a Resource which accesses the underlying +

                                          Source
                                          UseOnceSecret.scala
                                          Linear Supertypes
                                          AnyRef, Any
                                          Ordering
                                          1. Alphabetic
                                          2. By Inheritance
                                          Inherited
                                          1. UseOnceSecret
                                          2. AnyRef
                                          3. Any
                                          1. Hide All
                                          2. Show All
                                          Visibility
                                          1. Public
                                          2. Protected

                                          Abstract Value Members

                                          1. abstract def resource[F[_]](implicit F: Sync[F]): Resource[F, Array[Char]]

                                            Returns a Resource which accesses the underlying Array[Char] and nullifies it after use.

                                            Returns a Resource which accesses the underlying Array[Char] and nullifies it after use.

                                            In case the secret has already been used once, an IllegalStateException will instead be raised. diff --git a/api/ciris/index.html b/api/ciris/index.html index 53165fb7..841befdb 100644 --- a/api/ciris/index.html +++ b/api/ciris/index.html @@ -1,5 +1,5 @@ -Ciris v3.6.0 - ciris

                                            Packages

                                            p

                                            ciris

                                            package ciris

                                            Source
                                            ciris.scala
                                            Linear Supertypes
                                            CirisRuntimePlatform, AnyRef, Any
                                            Ordering
                                            1. Alphabetic
                                            2. By Inheritance
                                            Inherited
                                            1. ciris
                                            2. CirisRuntimePlatform
                                            3. AnyRef
                                            4. Any
                                            1. Hide All
                                            2. Show All
                                            Visibility
                                            1. Public
                                            2. Protected

                                            Package Members

                                            1. package refined

                                            Type Members

                                            1. sealed abstract class ConfigDecoder[A, B] extends AnyRef

                                              Decodes configuration values from a first type to a second type.

                                            2. sealed abstract class ConfigError extends AnyRef

                                              Error which occurred while loading or decoding configuration values.

                                              Error which occurred while loading or decoding configuration values.

                                              Configuration errors can be created using ConfigError.apply, or +Ciris v3.7.0 - ciris

                                              Packages

                                              p

                                              ciris

                                              package ciris

                                              Source
                                              ciris.scala
                                              Linear Supertypes
                                              CirisRuntimePlatform, AnyRef, Any
                                              Ordering
                                              1. Alphabetic
                                              2. By Inheritance
                                              Inherited
                                              1. ciris
                                              2. CirisRuntimePlatform
                                              3. AnyRef
                                              4. Any
                                              1. Hide All
                                              2. Show All
                                              Visibility
                                              1. Public
                                              2. Protected

                                              Package Members

                                              1. package refined

                                              Type Members

                                              1. sealed abstract class ConfigDecoder[A, B] extends AnyRef

                                                Decodes configuration values from a first type to a second type.

                                              2. sealed abstract class ConfigError extends AnyRef

                                                Error which occurred while loading or decoding configuration values.

                                                Error which occurred while loading or decoding configuration values.

                                                Configuration errors can be created using ConfigError.apply, or with ConfigError.sensitive if the error might contain sensitive details. When writing ConfigDecoders, ConfigError.decode can be useful for creating decoding errors.

                                                Errors for a single configuration value, which might be retrieved diff --git a/api/ciris/refined/index.html b/api/ciris/refined/index.html index 10a969d2..6584c54c 100644 --- a/api/ciris/refined/index.html +++ b/api/ciris/refined/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.refined

                                                Packages

                                                p

                                                ciris

                                                refined

                                                package refined

                                                Source
                                                refined.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. refined
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Package Members

                                                1. package internal

                                                Value Members

                                                1. implicit final def refTypeConfigDecoder[F[_, _], A, B, P](implicit decoder: ConfigDecoder[A, B], refType: RefType[F], show: Show[B], validate: Validate[B, P], typeName: TypeName[F[B, P]]): ConfigDecoder[A, F[B, P]]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - ciris.refined

                                                Packages

                                                p

                                                ciris

                                                refined

                                                package refined

                                                Source
                                                refined.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. refined
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Package Members

                                                1. package internal

                                                Value Members

                                                1. implicit final def refTypeConfigDecoder[F[_, _], A, B, P](implicit decoder: ConfigDecoder[A, B], refType: RefType[F], show: Show[B], validate: Validate[B, P], typeName: TypeName[F[B, P]]): ConfigDecoder[A, F[B, P]]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/ciris/refined/internal/TypeName$.html b/api/ciris/refined/internal/TypeName$.html index 0a312bc8..44ed5f58 100644 --- a/api/ciris/refined/internal/TypeName$.html +++ b/api/ciris/refined/internal/TypeName$.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.refined.internal.TypeName

                                                Packages

                                                object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, TypeNameRuntimePlatform, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. TypeNameRuntimePlatform
                                                4. AnyRef
                                                5. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. implicit final macro def typeName[A]: TypeName[A]
                                                  Definition Classes
                                                  TypeNameRuntimePlatform
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from TypeNameRuntimePlatform

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - ciris.refined.internal.TypeName

                                                Packages

                                                object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, TypeNameRuntimePlatform, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. TypeNameRuntimePlatform
                                                4. AnyRef
                                                5. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. implicit final macro def typeName[A]: TypeName[A]
                                                  Definition Classes
                                                  TypeNameRuntimePlatform
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from TypeNameRuntimePlatform

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/ciris/refined/internal/TypeName.html b/api/ciris/refined/internal/TypeName.html index 9c654ca3..86879e36 100644 --- a/api/ciris/refined/internal/TypeName.html +++ b/api/ciris/refined/internal/TypeName.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.refined.internal.TypeName

                                                Packages

                                                final case class TypeName[A](value: String) extends Product with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, Product, Equals, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. Product
                                                4. Equals
                                                5. AnyRef
                                                6. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Instance Constructors

                                                1. new TypeName(value: String)

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                8. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                9. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                10. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                12. def productElementNames: Iterator[String]
                                                  Definition Classes
                                                  Product
                                                13. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                14. val value: String
                                                15. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                16. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                17. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from Product

                                                Inherited from Equals

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - ciris.refined.internal.TypeName

                                                Packages

                                                final case class TypeName[A](value: String) extends Product with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, Product, Equals, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. Product
                                                4. Equals
                                                5. AnyRef
                                                6. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Instance Constructors

                                                1. new TypeName(value: String)

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                8. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                9. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                10. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                12. def productElementNames: Iterator[String]
                                                  Definition Classes
                                                  Product
                                                13. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                14. val value: String
                                                15. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                16. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                17. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from Product

                                                Inherited from Equals

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/ciris/refined/internal/index.html b/api/ciris/refined/internal/index.html index 7a647673..53a4a418 100644 --- a/api/ciris/refined/internal/index.html +++ b/api/ciris/refined/internal/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - ciris.refined.internal

                                                Packages

                                                p

                                                ciris.refined

                                                internal

                                                package internal

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. final case class TypeName[A](value: String) extends Product with Serializable

                                                Value Members

                                                1. object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Ungrouped

                                                +Ciris v3.7.0 - ciris.refined.internal

                                                Packages

                                                p

                                                ciris.refined

                                                internal

                                                package internal

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. final case class TypeName[A](value: String) extends Product with Serializable

                                                Value Members

                                                1. object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Ungrouped

                                                diff --git a/api/enumeratum/Ciris$.html b/api/enumeratum/Ciris$.html index ea4fa56a..f13c4815 100644 --- a/api/enumeratum/Ciris$.html +++ b/api/enumeratum/Ciris$.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.Ciris

                                                Packages

                                                object Ciris

                                                Source
                                                Ciris.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. Ciris
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def enumConfigDecoder[A <: EnumEntry](enum: Enum[A])(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.Ciris

                                                Packages

                                                object Ciris

                                                Source
                                                Ciris.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. Ciris
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def enumConfigDecoder[A <: EnumEntry](enum: Enum[A])(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/CirisEnum.html b/api/enumeratum/CirisEnum.html index 480d781a..fb9cb493 100644 --- a/api/enumeratum/CirisEnum.html +++ b/api/enumeratum/CirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.CirisEnum

                                                Packages

                                                t

                                                enumeratum

                                                CirisEnum

                                                trait CirisEnum[A <: EnumEntry] extends AnyRef

                                                Self Type
                                                CirisEnum[A] with Enum[A]
                                                Source
                                                CirisEnum.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CirisEnum
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.CirisEnum

                                                Packages

                                                t

                                                enumeratum

                                                CirisEnum

                                                trait CirisEnum[A <: EnumEntry] extends AnyRef

                                                Self Type
                                                CirisEnum[A] with Enum[A]
                                                Source
                                                CirisEnum.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CirisEnum
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/index.html b/api/enumeratum/index.html index 9c481d26..4d5c65db 100644 --- a/api/enumeratum/index.html +++ b/api/enumeratum/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum

                                                Packages

                                                p

                                                enumeratum

                                                package enumeratum

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Package Members

                                                1. package internal
                                                2. package values

                                                Type Members

                                                1. trait CirisEnum[A <: EnumEntry] extends AnyRef

                                                Value Members

                                                1. object Ciris

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum

                                                Packages

                                                p

                                                enumeratum

                                                package enumeratum

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Package Members

                                                1. package internal
                                                2. package values

                                                Type Members

                                                1. trait CirisEnum[A <: EnumEntry] extends AnyRef

                                                Value Members

                                                1. object Ciris

                                                Ungrouped

                                                diff --git a/api/enumeratum/internal/TypeName$.html b/api/enumeratum/internal/TypeName$.html index caea99f9..e5223153 100644 --- a/api/enumeratum/internal/TypeName$.html +++ b/api/enumeratum/internal/TypeName$.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.internal.TypeName

                                                Packages

                                                object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, TypeNameRuntimePlatform, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. TypeNameRuntimePlatform
                                                4. AnyRef
                                                5. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. implicit final macro def typeName[A]: TypeName[A]
                                                  Definition Classes
                                                  TypeNameRuntimePlatform
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from TypeNameRuntimePlatform

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.internal.TypeName

                                                Packages

                                                object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, TypeNameRuntimePlatform, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. TypeNameRuntimePlatform
                                                4. AnyRef
                                                5. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. implicit final macro def typeName[A]: TypeName[A]
                                                  Definition Classes
                                                  TypeNameRuntimePlatform
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from TypeNameRuntimePlatform

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/internal/TypeName.html b/api/enumeratum/internal/TypeName.html index 5a1c3ada..ff9b4643 100644 --- a/api/enumeratum/internal/TypeName.html +++ b/api/enumeratum/internal/TypeName.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.internal.TypeName

                                                Packages

                                                final case class TypeName[A](value: String) extends Product with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, Product, Equals, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. Product
                                                4. Equals
                                                5. AnyRef
                                                6. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Instance Constructors

                                                1. new TypeName(value: String)

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                8. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                9. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                10. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                12. def productElementNames: Iterator[String]
                                                  Definition Classes
                                                  Product
                                                13. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                14. val value: String
                                                15. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                16. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                17. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from Product

                                                Inherited from Equals

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.internal.TypeName

                                                Packages

                                                final case class TypeName[A](value: String) extends Product with Serializable

                                                Source
                                                TypeName.scala
                                                Linear Supertypes
                                                Serializable, Product, Equals, AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. TypeName
                                                2. Serializable
                                                3. Product
                                                4. Equals
                                                5. AnyRef
                                                6. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Instance Constructors

                                                1. new TypeName(value: String)

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                8. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                9. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                10. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                12. def productElementNames: Iterator[String]
                                                  Definition Classes
                                                  Product
                                                13. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                14. val value: String
                                                15. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                16. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                17. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from Serializable

                                                Inherited from Product

                                                Inherited from Equals

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/internal/index.html b/api/enumeratum/internal/index.html index 3892bf59..ed425ec8 100644 --- a/api/enumeratum/internal/index.html +++ b/api/enumeratum/internal/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.internal

                                                Packages

                                                p

                                                enumeratum

                                                internal

                                                package internal

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. final case class TypeName[A](value: String) extends Product with Serializable

                                                Value Members

                                                1. object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.internal

                                                Packages

                                                p

                                                enumeratum

                                                internal

                                                package internal

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. final case class TypeName[A](value: String) extends Product with Serializable

                                                Value Members

                                                1. object TypeName extends TypeNameRuntimePlatform with Serializable

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/ByteCirisEnum.html b/api/enumeratum/values/ByteCirisEnum.html index 7c87541d..0571c4b1 100644 --- a/api/enumeratum/values/ByteCirisEnum.html +++ b/api/enumeratum/values/ByteCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.ByteCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                ByteCirisEnum

                                                trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]

                                                Self Type
                                                ByteCirisEnum[EntryType] with ValueEnum[Byte, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Byte, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. ByteCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  ByteCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Byte, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.ByteCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                ByteCirisEnum

                                                trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]

                                                Self Type
                                                ByteCirisEnum[EntryType] with ValueEnum[Byte, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Byte, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. ByteCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  ByteCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Byte, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/CharCirisEnum.html b/api/enumeratum/values/CharCirisEnum.html index cc877fa1..23eb7f41 100644 --- a/api/enumeratum/values/CharCirisEnum.html +++ b/api/enumeratum/values/CharCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.CharCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                CharCirisEnum

                                                trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]

                                                Self Type
                                                CharCirisEnum[EntryType] with ValueEnum[Char, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Char, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CharCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  CharCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Char, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.CharCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                CharCirisEnum

                                                trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]

                                                Self Type
                                                CharCirisEnum[EntryType] with ValueEnum[Char, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Char, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CharCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  CharCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Char, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/Ciris$.html b/api/enumeratum/values/Ciris$.html index 69a75954..8210d674 100644 --- a/api/enumeratum/values/Ciris$.html +++ b/api/enumeratum/values/Ciris$.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.Ciris

                                                Packages

                                                object Ciris

                                                Source
                                                Ciris.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. Ciris
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def enumConfigDecoder[ValueType, EntryType <: ValueEnumEntry[ValueType]](enum: ValueEnum[ValueType, EntryType])(implicit decoder: ConfigDecoder[String, ValueType], typeName: TypeName[EntryType], show: Show[ValueType]): ConfigDecoder[String, EntryType]
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.Ciris

                                                Packages

                                                object Ciris

                                                Source
                                                Ciris.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. Ciris
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def enumConfigDecoder[ValueType, EntryType <: ValueEnumEntry[ValueType]](enum: ValueEnum[ValueType, EntryType])(implicit decoder: ConfigDecoder[String, ValueType], typeName: TypeName[EntryType], show: Show[ValueType]): ConfigDecoder[String, EntryType]
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/CirisValueEnum.html b/api/enumeratum/values/CirisValueEnum.html index b2488f33..e6359576 100644 --- a/api/enumeratum/values/CirisValueEnum.html +++ b/api/enumeratum/values/CirisValueEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.CirisValueEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                CirisValueEnum

                                                sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef

                                                Self Type
                                                CirisValueEnum[ValueType, EntryType] with ValueEnum[ValueType, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CirisValueEnum
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Abstract Value Members

                                                1. implicit abstract def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]

                                                Concrete 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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                17. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                18. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.CirisValueEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                CirisValueEnum

                                                sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef

                                                Self Type
                                                CirisValueEnum[ValueType, EntryType] with ValueEnum[ValueType, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. CirisValueEnum
                                                2. AnyRef
                                                3. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Abstract Value Members

                                                1. implicit abstract def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]

                                                Concrete 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]) @HotSpotIntrinsicCandidate() @native()
                                                6. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                7. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                8. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                9. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                11. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                12. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                13. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                15. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                16. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                17. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                18. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/IntCirisEnum.html b/api/enumeratum/values/IntCirisEnum.html index 2b5ccf7f..670cbaf7 100644 --- a/api/enumeratum/values/IntCirisEnum.html +++ b/api/enumeratum/values/IntCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.IntCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                IntCirisEnum

                                                trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]

                                                Self Type
                                                IntCirisEnum[EntryType] with ValueEnum[Int, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Int, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. IntCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  IntCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Int, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.IntCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                IntCirisEnum

                                                trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]

                                                Self Type
                                                IntCirisEnum[EntryType] with ValueEnum[Int, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Int, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. IntCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  IntCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Int, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/LongCirisEnum.html b/api/enumeratum/values/LongCirisEnum.html index 437de9b3..e254e6d1 100644 --- a/api/enumeratum/values/LongCirisEnum.html +++ b/api/enumeratum/values/LongCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.LongCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                LongCirisEnum

                                                trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]

                                                Self Type
                                                LongCirisEnum[EntryType] with ValueEnum[Long, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Long, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. LongCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  LongCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Long, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.LongCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                LongCirisEnum

                                                trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]

                                                Self Type
                                                LongCirisEnum[EntryType] with ValueEnum[Long, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Long, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. LongCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  LongCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Long, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/ShortCirisEnum.html b/api/enumeratum/values/ShortCirisEnum.html index 28d899f9..ee344a37 100644 --- a/api/enumeratum/values/ShortCirisEnum.html +++ b/api/enumeratum/values/ShortCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.ShortCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                ShortCirisEnum

                                                trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]

                                                Self Type
                                                ShortCirisEnum[EntryType] with ValueEnum[Short, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Short, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. ShortCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  ShortCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Short, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.ShortCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                ShortCirisEnum

                                                trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]

                                                Self Type
                                                ShortCirisEnum[EntryType] with ValueEnum[Short, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[Short, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. ShortCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  ShortCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[Short, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/StringCirisEnum.html b/api/enumeratum/values/StringCirisEnum.html index ff307487..927340fd 100644 --- a/api/enumeratum/values/StringCirisEnum.html +++ b/api/enumeratum/values/StringCirisEnum.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values.StringCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                StringCirisEnum

                                                trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]

                                                Self Type
                                                StringCirisEnum[EntryType] with ValueEnum[String, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[String, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. StringCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  StringCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[String, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values.StringCirisEnum

                                                Packages

                                                t

                                                enumeratum.values

                                                StringCirisEnum

                                                trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]

                                                Self Type
                                                StringCirisEnum[EntryType] with ValueEnum[String, EntryType]
                                                Source
                                                CirisValueEnum.scala
                                                Linear Supertypes
                                                CirisValueEnum[String, EntryType], AnyRef, Any
                                                Ordering
                                                1. Alphabetic
                                                2. By Inheritance
                                                Inherited
                                                1. StringCirisEnum
                                                2. CirisValueEnum
                                                3. AnyRef
                                                4. Any
                                                1. Hide All
                                                2. Show All
                                                Visibility
                                                1. Public
                                                2. Protected

                                                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. implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
                                                  Definition Classes
                                                  StringCirisEnumCirisValueEnum
                                                6. def clone(): AnyRef
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
                                                7. final def eq(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                8. def equals(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef → Any
                                                9. final def getClass(): Class[_ <: AnyRef]
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                10. def hashCode(): Int
                                                  Definition Classes
                                                  AnyRef → Any
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                11. final def isInstanceOf[T0]: Boolean
                                                  Definition Classes
                                                  Any
                                                12. final def ne(arg0: AnyRef): Boolean
                                                  Definition Classes
                                                  AnyRef
                                                13. final def notify(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                14. final def notifyAll(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @HotSpotIntrinsicCandidate() @native()
                                                15. final def synchronized[T0](arg0: => T0): T0
                                                  Definition Classes
                                                  AnyRef
                                                16. def toString(): String
                                                  Definition Classes
                                                  AnyRef → Any
                                                17. final def wait(arg0: Long, arg1: Int): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])
                                                18. final def wait(arg0: Long): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException]) @native()
                                                19. final def wait(): Unit
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.InterruptedException])

                                                Deprecated Value Members

                                                1. def finalize(): Unit
                                                  Attributes
                                                  protected[lang]
                                                  Definition Classes
                                                  AnyRef
                                                  Annotations
                                                  @throws(classOf[java.lang.Throwable]) @Deprecated
                                                  Deprecated

                                                  (Since version 9)

                                                Inherited from CirisValueEnum[String, EntryType]

                                                Inherited from AnyRef

                                                Inherited from Any

                                                Ungrouped

                                                diff --git a/api/enumeratum/values/index.html b/api/enumeratum/values/index.html index 5fb664a4..566ed1a6 100644 --- a/api/enumeratum/values/index.html +++ b/api/enumeratum/values/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0 - enumeratum.values

                                                Packages

                                                package values

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
                                                2. trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
                                                3. sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
                                                4. trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
                                                5. trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
                                                6. trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
                                                7. trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]

                                                Value Members

                                                1. object Ciris

                                                Ungrouped

                                                +Ciris v3.7.0 - enumeratum.values

                                                Packages

                                                package values

                                                Ordering
                                                1. Alphabetic
                                                Visibility
                                                1. Public
                                                2. Protected

                                                Type Members

                                                1. trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
                                                2. trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
                                                3. sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
                                                4. trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
                                                5. trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
                                                6. trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
                                                7. trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]

                                                Value Members

                                                1. object Ciris

                                                Ungrouped

                                                diff --git a/api/index.html b/api/index.html index 61af2eee..927cbbf6 100644 --- a/api/index.html +++ b/api/index.html @@ -1,2 +1,2 @@ -Ciris v3.6.0

                                                Packages

                                                p

                                                root package

                                                package root

                                                Package Members

                                                1. package ciris
                                                2. package enumeratum

                                                Ungrouped

                                                +Ciris v3.7.0

                                                Packages

                                                p

                                                root package

                                                package root

                                                Package Members

                                                1. package ciris
                                                2. package enumeratum

                                                Ungrouped

                                                diff --git a/docs/configurations.html b/docs/configurations.html index 46523b71..44af7efc 100644 --- a/docs/configurations.html +++ b/docs/configurations.html @@ -66,10 +66,10 @@
                                                import cats.effect.IO
                                                 
                                                 port: ConfigValue[IO, Int]
                                                -// res1: ConfigValue[IO, Int] = ConfigValue$996707428
                                                +// res1: ConfigValue[IO, Int] = ConfigValue$1751285333
                                                 
                                                 port.covary[IO]
                                                -// res2: ConfigValue[IO, Int] = ConfigValue$996707428
                                                +// res2: ConfigValue[IO, Int] = ConfigValue$1751285333
                                                 

                                                Multiple values can be loaded and combined in parallel, and errors accumulated, using parMapN.

                                                import cats.syntax.all._
                                                diff --git a/docs/configurations/index.html b/docs/configurations/index.html
                                                index 46523b71..44af7efc 100644
                                                --- a/docs/configurations/index.html
                                                +++ b/docs/configurations/index.html
                                                @@ -66,10 +66,10 @@
                                                 
                                                import cats.effect.IO
                                                 
                                                 port: ConfigValue[IO, Int]
                                                -// res1: ConfigValue[IO, Int] = ConfigValue$996707428
                                                +// res1: ConfigValue[IO, Int] = ConfigValue$1751285333
                                                 
                                                 port.covary[IO]
                                                -// res2: ConfigValue[IO, Int] = ConfigValue$996707428
                                                +// res2: ConfigValue[IO, Int] = ConfigValue$1751285333
                                                 

                                                Multiple values can be loaded and combined in parallel, and errors accumulated, using parMapN.

                                                import cats.syntax.all._
                                                diff --git a/docs/modules.html b/docs/modules.html
                                                index f88df4f6..f1c34981 100644
                                                --- a/docs/modules.html
                                                +++ b/docs/modules.html
                                                @@ -72,7 +72,7 @@ 

                                                "SERIAL").as[SerialNumber] -// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$1137595018 +// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$374902227

                                                Circe YAML

                                                The ciris-circe-yaml module provides ConfigDecoders for YAML using circe-yaml.

                                                @@ -91,7 +91,7 @@

                                                "SERIAL").as[SerialNumber] -// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$618344635 +// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$264833041

                                                Enumeratum

                                                The ciris-enumeratum module provides ConfigDecoders for Enumeratum enumerations.

                                                @@ -112,7 +112,7 @@

                                                "SUIT").as[Suit] -// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1736395287 +// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1929738775

                                        For ValueEnums, also mix in the matching CirisValueEnum to derive a ConfigDecoder instance.

                                        import ciris.env
                                        @@ -129,7 +129,7 @@ 

                                        "COLOR").as[Color] -// res6: ciris.ConfigValue[ciris.package.Effect, Color] = ConfigValue$1864602141 +// res6: ciris.ConfigValue[ciris.package.Effect, Color] = ConfigValue$2122827220

                                        Http4s

                                        The ciris-http4s module provides ConfigDecoders for the http4s Uri type.

                                        @@ -138,7 +138,7 @@

                                        import org.http4s.Uri env("URI").as[Uri] -// res8: ciris.ConfigValue[ciris.package.Effect, Uri] = ConfigValue$1900135383 +// res8: ciris.ConfigValue[ciris.package.Effect, Uri] = ConfigValue$1141696012

                                      Refined

                                      The ciris-refined module provides ConfigDecoders for refined refinement types.

                                      @@ -147,7 +147,7 @@

                                      import eu.timepit.refined.types.numeric.PosInt env("POS_INT").as[PosInt] -// res10: ciris.ConfigValue[ciris.package.Effect, PosInt] = ConfigValue$1509543013 +// res10: ciris.ConfigValue[ciris.package.Effect, PosInt] = ConfigValue$340881182

                                Squants

                                The ciris-squants module provides ConfigDecoders for squants quantities.

                                @@ -156,6 +156,6 @@

                                import squants.market.Money env("MONEY").as[Money] -// res12: ciris.ConfigValue[ciris.package.Effect, Money] = ConfigValue$235474537 +// res12: ciris.ConfigValue[ciris.package.Effect, Money] = ConfigValue$1855223000


                      \ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html index f88df4f6..f1c34981 100644 --- a/docs/modules/index.html +++ b/docs/modules/index.html @@ -72,7 +72,7 @@

                      "SERIAL").as[SerialNumber] -// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$1137595018 +// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$374902227

                      Circe YAML

                      The ciris-circe-yaml module provides ConfigDecoders for YAML using circe-yaml.

                      @@ -91,7 +91,7 @@

                      "SERIAL").as[SerialNumber] -// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$618344635 +// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$264833041

                Enumeratum

                The ciris-enumeratum module provides ConfigDecoders for Enumeratum enumerations.

                @@ -112,7 +112,7 @@

                "SUIT").as[Suit] -// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1736395287 +// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1929738775

                For ValueEnums, also mix in the matching CirisValueEnum to derive a ConfigDecoder instance.

                import ciris.env
                @@ -129,7 +129,7 @@ 

                "COLOR").as[Color] -// res6: ciris.ConfigValue[ciris.package.Effect, Color] = ConfigValue$1864602141 +// res6: ciris.ConfigValue[ciris.package.Effect, Color] = ConfigValue$2122827220

                Http4s

                The ciris-http4s module provides ConfigDecoders for the http4s Uri type.

                @@ -138,7 +138,7 @@

                import org.http4s.Uri env("URI").as[Uri] -// res8: ciris.ConfigValue[ciris.package.Effect, Uri] = ConfigValue$1900135383 +// res8: ciris.ConfigValue[ciris.package.Effect, Uri] = ConfigValue$1141696012

                Refined

                The ciris-refined module provides ConfigDecoders for refined refinement types.

                @@ -147,7 +147,7 @@

                import eu.timepit.refined.types.numeric.PosInt env("POS_INT").as[PosInt] -// res10: ciris.ConfigValue[ciris.package.Effect, PosInt] = ConfigValue$1509543013 +// res10: ciris.ConfigValue[ciris.package.Effect, PosInt] = ConfigValue$340881182

                Squants

                The ciris-squants module provides ConfigDecoders for squants quantities.

                @@ -156,6 +156,6 @@

                import squants.market.Money env("MONEY").as[Money] -// res12: ciris.ConfigValue[ciris.package.Effect, Money] = ConfigValue$235474537 +// res12: ciris.ConfigValue[ciris.package.Effect, Money] = ConfigValue$1855223000


              \ No newline at end of file diff --git a/docs/overview.html b/docs/overview.html index b88a54c4..5f7e6189 100644 --- a/docs/overview.html +++ b/docs/overview.html @@ -63,10 +63,10 @@
            10. Decoding configuration values to various commonly used types.
            11. Accumulating errors when multiple values cannot be loaded.
            12. -

              Documentation is kept up-to-date, currently documenting v3.6.0 on Scala 2.13.

              +

              Documentation is kept up-to-date, currently documenting v3.7.0 on Scala 2.13.

              Getting Started

              To get started with sbt, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris" % "3.7.0"
               

              Published for Scala 2.12, 2.13 and 3.3, Scala.js 1.17 and Scala Native 0.4.

              For changes between versions, please refer to the release notes.

              @@ -78,27 +78,27 @@

              Following are additional provided modules.

              Circe

              For circe support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-circe" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-circe" % "3.7.0"
               

              Circe YAML

              For circe-yaml support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-circe-yaml" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-circe-yaml" % "3.7.0"
               

              Enumeratum

              For enumeratum support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-enumeratum" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-enumeratum" % "3.7.0"
               

              Http4s

              For http4s support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-http4s" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-http4s" % "3.7.0"
               

              Refined

              For refined support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-refined" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-refined" % "3.7.0"
               

              Squants

              For squants support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-squants" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-squants" % "3.7.0"
               

              External Modules

              Following is an incomplete list of third-party integrations.

              @@ -120,7 +120,7 @@

              resolvers += Resolver.sonatypeRepo("snapshots") -libraryDependencies += "is.cir" %% "ciris" % "3.6.0+63-3563867a-SNAPSHOT" +libraryDependencies += "is.cir" %% "ciris" % "3.7.0"

              Dependencies

              Refer to the table below for dependencies and version support across modules.

              diff --git a/docs/overview/index.html b/docs/overview/index.html index b88a54c4..5f7e6189 100644 --- a/docs/overview/index.html +++ b/docs/overview/index.html @@ -63,10 +63,10 @@
            13. Decoding configuration values to various commonly used types.
            14. Accumulating errors when multiple values cannot be loaded.
            15. -

              Documentation is kept up-to-date, currently documenting v3.6.0 on Scala 2.13.

              +

              Documentation is kept up-to-date, currently documenting v3.7.0 on Scala 2.13.

              Getting Started

              To get started with sbt, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris" % "3.7.0"
               

              Published for Scala 2.12, 2.13 and 3.3, Scala.js 1.17 and Scala Native 0.4.

              For changes between versions, please refer to the release notes.

              @@ -78,27 +78,27 @@

              Following are additional provided modules.

              Circe

              For circe support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-circe" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-circe" % "3.7.0"
               

              Circe YAML

              For circe-yaml support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-circe-yaml" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-circe-yaml" % "3.7.0"
               

              Enumeratum

              For enumeratum support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-enumeratum" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-enumeratum" % "3.7.0"
               

              Http4s

              For http4s support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-http4s" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-http4s" % "3.7.0"
               

              Refined

              For refined support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-refined" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-refined" % "3.7.0"
               

              Squants

              For squants support, add the following line to your build.sbt file.

              -
              libraryDependencies += "is.cir" %% "ciris-squants" % "3.6.0"
              +
              libraryDependencies += "is.cir" %% "ciris-squants" % "3.7.0"
               

              External Modules

              Following is an incomplete list of third-party integrations.

              @@ -120,7 +120,7 @@

              resolvers += Resolver.sonatypeRepo("snapshots") -libraryDependencies += "is.cir" %% "ciris" % "3.6.0+63-3563867a-SNAPSHOT" +libraryDependencies += "is.cir" %% "ciris" % "3.7.0"

              Dependencies

              Refer to the table below for dependencies and version support across modules.

              diff --git a/en/index.html b/en/index.html index 285fc715..4ec06c91 100644 --- a/en/index.html +++ b/en/index.html @@ -1,9 +1,9 @@ -Ciris · Functional Configurations for Scala