object ConfigDecoder
- Source
- ConfigDecoder.scala
- Grouped
- Alphabetic
- By Inheritance
- ConfigDecoder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigDecoder
- Source
- ConfigDecoder.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigDecoder
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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.
- 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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
sealed abstract class ConfigDecoder[A, B] extends AnyRef
Decodes configuration values from a first type to a second type. -
- Source
- ConfigDecoder.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigDecoder
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
sealed abstract class ConfigDecoder[A, B] extends AnyRef
Decodes configuration values from a first type to a second type. +
- Source
- ConfigDecoder.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigDecoder
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigError
- Source
- ConfigError.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigError
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigError
- Source
- ConfigError.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigError
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final val configErrorEq: Eq[ConfigError]
- implicit final val configErrorShow: Show[ConfigError]
- 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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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
scala> val error = ConfigError("error") +
- Source
- ConfigError.scala
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 Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigException extends Serializable
- Source
- ConfigException.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigException
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final val configExceptionEq: Eq[ConfigException]
- implicit final val configExceptionShow: Show[ConfigException]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - ciris.ConfigException Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigException extends Serializable
- Source
- ConfigException.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigException
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final val configExceptionEq: Eq[ConfigException]
- implicit final val configExceptionShow: Show[ConfigException]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - ciris.ConfigException Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
final case class ConfigException(error: ConfigError) extends RuntimeException with Product with Serializable
- Source
- ConfigException.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigException
- Product
- Equals
- RuntimeException
- Exception
- Throwable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new ConfigException(error: ConfigError)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addSuppressed(arg0: Throwable): Unit
- Definition Classes
- Throwable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val error: ConfigError
- final def fillInStackTrace(): Throwable
- Definition Classes
- ConfigException → Throwable
- def getCause(): Throwable
- Definition Classes
- Throwable
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def getLocalizedMessage(): String
- Definition Classes
- Throwable
- final def getMessage(): String
- Definition Classes
- ConfigException → Throwable
- def getStackTrace(): Array[StackTraceElement]
- Definition Classes
- Throwable
- final def getSuppressed(): Array[Throwable]
- Definition Classes
- Throwable
- def initCause(arg0: Throwable): Throwable
- Definition Classes
- Throwable
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def message: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def printStackTrace(arg0: PrintWriter): Unit
- Definition Classes
- Throwable
- def printStackTrace(arg0: PrintStream): Unit
- Definition Classes
- Throwable
- def printStackTrace(): Unit
- Definition Classes
- Throwable
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def setStackTrace(arg0: Array[StackTraceElement]): Unit
- Definition Classes
- Throwable
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Throwable → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
final case class ConfigException(error: ConfigError) extends RuntimeException with Product with Serializable
- Source
- ConfigException.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ConfigException
- Product
- Equals
- RuntimeException
- Exception
- Throwable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new ConfigException(error: ConfigError)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addSuppressed(arg0: Throwable): Unit
- Definition Classes
- Throwable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val error: ConfigError
- final def fillInStackTrace(): Throwable
- Definition Classes
- ConfigException → Throwable
- def getCause(): Throwable
- Definition Classes
- Throwable
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def getLocalizedMessage(): String
- Definition Classes
- Throwable
- final def getMessage(): String
- Definition Classes
- ConfigException → Throwable
- def getStackTrace(): Array[StackTraceElement]
- Definition Classes
- Throwable
- final def getSuppressed(): Array[Throwable]
- Definition Classes
- Throwable
- def initCause(arg0: Throwable): Throwable
- Definition Classes
- Throwable
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def message: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def printStackTrace(arg0: PrintWriter): Unit
- Definition Classes
- Throwable
- def printStackTrace(arg0: PrintStream): Unit
- Definition Classes
- Throwable
- def printStackTrace(): Unit
- Definition Classes
- Throwable
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def setStackTrace(arg0: Array[StackTraceElement]): Unit
- Definition Classes
- Throwable
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Throwable → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - ciris.ConfigKey Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigKey extends ConfigKeyRuntimePlatform
- Source
- ConfigKey.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigKey
- ConfigKeyRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply(description: => String): ConfigKey
Returns a new ConfigKey with the specified description.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final val configKeyEq: Eq[ConfigKey]
- implicit final val configKeyShow: Show[ConfigKey]
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigKey extends ConfigKeyRuntimePlatform
- Source
- ConfigKey.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigKey
- ConfigKeyRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply(description: => String): ConfigKey
Returns a new ConfigKey with the specified description.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final val configKeyEq: Eq[ConfigKey]
- implicit final val configKeyShow: Show[ConfigKey]
- final def env(name: String): ConfigKey
Returns a new ConfigKey for the specified environment variable.
Returns a new ConfigKey for the specified environment variable.
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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
sealed abstract class ConfigKey extends AnyRef
Provides a description of a key used for loading configuration values. -
- Source
- ConfigKey.scala
scala> val apiKey = ConfigKey.env("API_KEY") +
Ciris v3.7.0 - ciris.ConfigKey Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
sealed abstract class ConfigKey extends AnyRef
Provides a description of a key used for loading configuration values. +
- Source
- ConfigKey.scala
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 Cirisv3.6.0 < Back+implicit final class Ops[F[_], A] extends AnyVal
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ops
- AnyVal
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
- 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 Cirisv3.7.0 < Backdiff --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 @@ -implicit final class Ops[F[_], A] extends AnyVal
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ops
- AnyVal
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
- final def unwrap: ConfigValue[F, A]
Returns the underlying ConfigValue for the instance.
Inherited from AnyVal
Inherited from Any
Ungrouped
Ciris v3.6.0 - ciris.ConfigValue.Par.Tag Cirisv3.6.0 < Back+sealed trait Tag extends Any
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Tag
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def equals(arg0: Any): Boolean
- Definition Classes
- Any
- def hashCode(): Int
- Definition Classes
- Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
Inherited from Any
Ungrouped
Ciris v3.7.0 - ciris.ConfigValue.Par.Tag Cirisv3.7.0 < Backdiff --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 @@ -sealed trait Tag extends Any
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Tag
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def equals(arg0: Any): Boolean
- Definition Classes
- Any
- def hashCode(): Int
- Definition Classes
- Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
Inherited from Any
Ungrouped
Ciris v3.6.0 - ciris.ConfigValue.Par Cirisv3.6.0 < Back+object Par
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Par
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply[F[_], A](value: ConfigValue[F, A]): Par[F, A]
Returns a Par instance for the specified ConfigValue.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -object Par
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Par
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply[F[_], A](value: ConfigValue[F, A]): Par[F, A]
Returns a Par instance for the specified ConfigValue.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - ciris.ConfigValue Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigValue
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigValue
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object ConfigValue
- Source
- ConfigValue.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- ConfigValue
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Type Members
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- 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.
- 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.
- final def blocking[F[_], A](value: => ConfigValue[F, A]): ConfigValue[F, A]
Returns a new ConfigValue which loads the specified blocking value.
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- implicit final def configValueFlatMap[F[_]]: FlatMap[[β$0$]ConfigValue[F, β$0$]]
- implicit final def configValueNonEmptyParallel[G[_]]: Aux[[β$4$]ConfigValue[G, β$4$], [β$5$]Type[G, β$5$]]
- implicit final def configValueParApply[F[_]]: Apply[[β$2$]Type[F, β$2$]]
- 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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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
Resource
s for loading the configuration, there is also the option to return aResource
with ConfigValue#resource. -- Source
- ConfigValue.scala
scala> import cats.syntax.all._ +
- Source
- ConfigValue.scala
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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object Secret
- Source
- Secret.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- Secret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object Secret
- Source
- Secret.scala
Linear SupertypesOrdering- Grouped
- Alphabetic
- By Inheritance
Inherited- Secret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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.
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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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
scala> import cats.syntax.all._ +
- Source
- Secret.scala
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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object UseOnceSecret
- Source
- UseOnceSecret.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- UseOnceSecret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
object UseOnceSecret
- Source
- UseOnceSecret.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- UseOnceSecret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - ciris.UseOnceSecret Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
sealed abstract class UseOnceSecret extends AnyRef
Secret configuration value which can only be used once +
Ciris v3.7.0 - ciris.UseOnceSecret Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- Definition Classes
- ciris
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
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 SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- UseOnceSecret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- abstract def resource[F[_]](implicit F: Sync[F]): Resource[F, Array[Char]]
Returns a
Resource
which accesses the underlying +
- Source
- UseOnceSecret.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- UseOnceSecret
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- abstract def resource[F[_]](implicit F: Sync[F]): Resource[F, Array[Char]]
Returns a
Resource
which accesses the underlyingArray[Char]
and nullifies it after use.Returns a
Resource
which accesses the underlyingArray[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 Cirisv3.6.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
pciris
package ciris
- Source
- ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ciris
- CirisRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
\ 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 @@Type Members
- sealed abstract class ConfigDecoder[A, B] extends AnyRef
Decodes configuration values from a first type to a second type.
- 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 Cirisv3.7.0 < BackPackages
- package root
- Definition Classes
- root
- package ciris
- Definition Classes
- root
- package refined
- ConfigDecoder
- ConfigError
- ConfigException
- ConfigKey
- ConfigValue
- Effect
- Secret
- UseOnceSecret
\ 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 @@pciris
package ciris
- Source
- ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ciris
- CirisRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Type Members
- sealed abstract class ConfigDecoder[A, B] extends AnyRef
Decodes configuration values from a first type to a second type.
- 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 Cirisv3.6.0 < Back+package refined
- Source
- refined.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- refined
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -package refined
- Source
- refined.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- refined
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- 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.6.0 - ciris.refined.internal.TypeName Cirisv3.6.0 < Back+object TypeName extends TypeNameRuntimePlatform with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- TypeNameRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit final macro def typeName[A]: TypeName[A]
- Definition Classes
- TypeNameRuntimePlatform
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -object TypeName extends TypeNameRuntimePlatform with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- TypeNameRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit final macro def typeName[A]: TypeName[A]
- Definition Classes
- TypeNameRuntimePlatform
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - ciris.refined.internal.TypeName Cirisv3.6.0 < Back+final case class TypeName[A](value: String) extends Product with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new TypeName(value: String)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val value: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -final case class TypeName[A](value: String) extends Product with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new TypeName(value: String)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val value: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - ciris.refined.internal Cirisv3.6.0 < Back+Ciris v3.7.0 - ciris.refined.internal Cirisv3.7.0 < Backdiff --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 Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- Ciris
- CirisEnum
object Ciris
- Source
- Ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ciris
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def enumConfigDecoder[A <: EnumEntry](enum: Enum[A])(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- Ciris
- CirisEnum
object Ciris
- Source
- Ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ciris
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def enumConfigDecoder[A <: EnumEntry](enum: Enum[A])(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum.CirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- Ciris
- CirisEnum
trait CirisEnum[A <: EnumEntry] extends AnyRef
- Self Type
- CirisEnum[A] with Enum[A]
- Source
- CirisEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- CirisEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- Ciris
- CirisEnum
trait CirisEnum[A <: EnumEntry] extends AnyRef
- Self Type
- CirisEnum[A] with Enum[A]
- Source
- CirisEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- CirisEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[A]): ConfigDecoder[String, A]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum Cirisv3.6.0 < Back+Ciris v3.7.0 - enumeratum Cirisv3.7.0 < Backdiff --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 Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
object TypeName extends TypeNameRuntimePlatform with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- TypeNameRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit final macro def typeName[A]: TypeName[A]
- Definition Classes
- TypeNameRuntimePlatform
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
object TypeName extends TypeNameRuntimePlatform with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- TypeNameRuntimePlatform
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit final macro def typeName[A]: TypeName[A]
- Definition Classes
- TypeNameRuntimePlatform
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum.internal.TypeName Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
final case class TypeName[A](value: String) extends Product with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new TypeName(value: String)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val value: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
final case class TypeName[A](value: String) extends Product with Serializable
- Source
- TypeName.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- TypeName
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Instance Constructors
- new TypeName(value: String)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val value: String
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum.internal Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
- package values
- Definition Classes
- enumeratum
package internal
Ordering- Alphabetic
Visibility- Public
- Protected
Value Members
- object TypeName extends TypeNameRuntimePlatform with Serializable
Ungrouped
Ciris v3.7.0 - enumeratum.internal Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- TypeName
- package values
- Definition Classes
- enumeratum
package internal
Ordering- Alphabetic
Visibility- Public
- Protected
Value Members
- object TypeName extends TypeNameRuntimePlatform with Serializable
Ungrouped
Ciris v3.6.0 - enumeratum.values.ByteCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
- Self Type
- ByteCirisEnum[EntryType] with ValueEnum[Byte, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ByteCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- ByteCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.ByteCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
- Self Type
- ByteCirisEnum[EntryType] with ValueEnum[Byte, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ByteCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- ByteCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values.CharCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
- Self Type
- CharCirisEnum[EntryType] with ValueEnum[Char, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- CharCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- CharCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.CharCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
- Self Type
- CharCirisEnum[EntryType] with ValueEnum[Char, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- CharCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- CharCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values.Ciris Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
object Ciris
- Source
- Ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ciris
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- 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]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
object Ciris
- Source
- Ciris.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- Ciris
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- 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]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum.values.CirisValueEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
- Self Type
- CirisValueEnum[ValueType, EntryType] with ValueEnum[ValueType, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesKnown SubclassesOrdering- Alphabetic
- By Inheritance
Inherited- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- implicit abstract def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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 Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
- Self Type
- CirisValueEnum[ValueType, EntryType] with ValueEnum[ValueType, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesKnown SubclassesOrdering- Alphabetic
- By Inheritance
Inherited- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Abstract Value Members
- implicit abstract def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- 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.6.0 - enumeratum.values.IntCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
- Self Type
- IntCirisEnum[EntryType] with ValueEnum[Int, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- IntCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- IntCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.IntCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
- Self Type
- IntCirisEnum[EntryType] with ValueEnum[Int, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- IntCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- IntCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values.LongCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
- Self Type
- LongCirisEnum[EntryType] with ValueEnum[Long, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- LongCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- LongCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.LongCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
- Self Type
- LongCirisEnum[EntryType] with ValueEnum[Long, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- LongCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- LongCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values.ShortCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
- Self Type
- ShortCirisEnum[EntryType] with ValueEnum[Short, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ShortCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- ShortCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.ShortCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
- Self Type
- ShortCirisEnum[EntryType] with ValueEnum[Short, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- ShortCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- ShortCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values.StringCirisEnum Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]
- Self Type
- StringCirisEnum[EntryType] with ValueEnum[String, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- StringCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- StringCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.7.0 - enumeratum.values.StringCirisEnum Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]
- Self Type
- StringCirisEnum[EntryType] with ValueEnum[String, EntryType]
- Source
- CirisValueEnum.scala
Linear SupertypesOrdering- Alphabetic
- By Inheritance
Inherited- StringCirisEnum
- CirisValueEnum
- AnyRef
- Any
- Hide All
- Show All
Visibility- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def cirisConfigDecoder(implicit typeName: TypeName[EntryType]): ConfigDecoder[String, EntryType]
- Definition Classes
- StringCirisEnum → CirisValueEnum
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
Ungrouped
Ciris v3.6.0 - enumeratum.values Cirisv3.6.0 < Back+Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
package values
Ordering- Alphabetic
Visibility- Public
- Protected
Type Members
- trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
- trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
- sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
- trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
- trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
- trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
- trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]
Ungrouped
Ciris v3.7.0 - enumeratum.values Cirisv3.7.0 < Backdiff --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 @@ -Packages
- package root
- Definition Classes
- root
- package enumeratum
- Definition Classes
- root
- package internal
- Definition Classes
- enumeratum
- package values
- Definition Classes
- enumeratum
- ByteCirisEnum
- CharCirisEnum
- Ciris
- CirisValueEnum
- IntCirisEnum
- LongCirisEnum
- ShortCirisEnum
- StringCirisEnum
package values
Ordering- Alphabetic
Visibility- Public
- Protected
Type Members
- trait ByteCirisEnum[EntryType <: ByteEnumEntry] extends CirisValueEnum[Byte, EntryType]
- trait CharCirisEnum[EntryType <: CharEnumEntry] extends CirisValueEnum[Char, EntryType]
- sealed trait CirisValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType]] extends AnyRef
- trait IntCirisEnum[EntryType <: IntEnumEntry] extends CirisValueEnum[Int, EntryType]
- trait LongCirisEnum[EntryType <: LongEnumEntry] extends CirisValueEnum[Long, EntryType]
- trait ShortCirisEnum[EntryType <: ShortEnumEntry] extends CirisValueEnum[Short, EntryType]
- trait StringCirisEnum[EntryType <: StringEnumEntry] extends CirisValueEnum[String, EntryType]
Ungrouped
Ciris v3.6.0 Cirisv3.6.0 < Back+Packages
- package root
- package ciris
- package enumeratum
Ciris v3.7.0 Cirisv3.7.0 < Backdiff --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 @@Packages
- package root
- package ciris
- package enumeratum
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
@@ -91,7 +91,7 @@ciris-circe-yaml
module providesConfigDecoder
s for YAML usingcirce-yaml
."SERIAL").as[SerialNumber] -// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$618344635 +// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$264833041
Enumeratum
The
@@ -112,7 +112,7 @@ciris-enumeratum
module providesConfigDecoder
s for Enumeratum enumerations."SUIT").as[Suit] -// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1736395287 +// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1929738775
For
ValueEnum
s, also mix in the matchingCirisValueEnum
to derive aConfigDecoder
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
@@ -138,7 +138,7 @@ciris-http4s
module providesConfigDecoder
s for the http4sUri
type.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
@@ -147,7 +147,7 @@ciris-refined
module providesConfigDecoder
s for refined refinement types.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
@@ -156,6 +156,6 @@ciris-squants
module providesConfigDecoder
s for squants quantities.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
"SERIAL").as[SerialNumber] -// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$1137595018 +// res0: ConfigValue[Effect, SerialNumber] = ConfigValue$374902227
Circe YAML
The
@@ -91,7 +91,7 @@ciris-circe-yaml
module providesConfigDecoder
s for YAML usingcirce-yaml
."SERIAL").as[SerialNumber] -// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$618344635 +// res2: ConfigValue[Effect, SerialNumber] = ConfigValue$264833041
Enumeratum
The
@@ -112,7 +112,7 @@ciris-enumeratum
module providesConfigDecoder
s for Enumeratum enumerations."SUIT").as[Suit] -// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1736395287 +// res4: ciris.ConfigValue[ciris.package.Effect, Suit] = ConfigValue$1929738775
For
ValueEnum
s, also mix in the matchingCirisValueEnum
to derive aConfigDecoder
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
@@ -138,7 +138,7 @@ciris-http4s
module providesConfigDecoder
s for the http4sUri
type.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
@@ -147,7 +147,7 @@ciris-refined
module providesConfigDecoder
s for refined refinement types.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
@@ -156,6 +156,6 @@ciris-squants
module providesConfigDecoder
s for squants quantities.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
- package root
- Decoding configuration values to various commonly used types.
- Accumulating errors when multiple values cannot be loaded.
-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 @@- Decoding configuration values to various commonly used types.
- Accumulating errors when multiple values cannot be loaded.
-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 - package root
- package root
- package root
Example:Example:- package root
Example:
- package root
- package root
Example:Example: - package root
- package root
Example:- package root
Example:- package root
Example:
- package root
- package root
Example:Example: - package root
- package root
- package root
- package root
- package root
- package root