Class/Object

com.ccadllc.cedi.config

ConfigKey

Related Docs: object ConfigKey | package config

Permalink

sealed abstract class ConfigKey extends Product with Serializable

A key in a Typesafe Config object.

Keys may be absolute or relative. Relative keys are relative to a specific Config object, which may be arbitrarily nested inside other config keys. An absolute key refers to a path from the root of the config tree.

Source
ConfigKey.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConfigKey
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    Equals
  2. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to any2stringadd[ConfigKey] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ConfigKey, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to ArrowAssoc[ConfigKey] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def absolute: ConfigKey

    Permalink

    Returns a new config key that is marked absolute.

    Returns a new config key that is marked absolute. If this key is already absolute, then this method returns this.

    returns

    absolute key

  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. def ensuring(cond: (ConfigKey) ⇒ Boolean, msg: ⇒ Any): ConfigKey

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to Ensuring[ConfigKey] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (ConfigKey) ⇒ Boolean): ConfigKey

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to Ensuring[ConfigKey] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): ConfigKey

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to Ensuring[ConfigKey] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): ConfigKey

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to Ensuring[ConfigKey] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to StringFormat[ConfigKey] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. final def isAbsolute: Boolean

    Permalink

    Indicates whether or not this key is absolute or relative.

    Indicates whether or not this key is absolute or relative.

    returns

    true if absolute, false otherwise

  19. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  23. final def prefix(p: String): ConfigKey

    Permalink

    Returns a new config key equal to this key prefixed by the supplied value, if this key is relative.

    Returns a new config key equal to this key prefixed by the supplied value, if this key is relative. If this key is absolute, this method has no effect.

    p

    prefix

    returns

    prefixed key (if this key is relative), this otherwise

  24. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  25. def productPrefix: String

    Permalink
    Definition Classes
    Product
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. final def toString(): String

    Permalink
    Definition Classes
    ConfigKey → AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def [B](y: B): (ConfigKey, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ConfigKey to ArrowAssoc[ConfigKey] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ConfigKey to any2stringadd[ConfigKey]

Inherited by implicit conversion StringFormat from ConfigKey to StringFormat[ConfigKey]

Inherited by implicit conversion Ensuring from ConfigKey to Ensuring[ConfigKey]

Inherited by implicit conversion ArrowAssoc from ConfigKey to ArrowAssoc[ConfigKey]

Ungrouped