Trait

args4c

RichConfigOps

Related Doc: package args4c

Permalink

trait RichConfigOps extends LowPriorityArgs4cImplicits

Provider operations on a 'config'

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichConfigOps
  2. LowPriorityArgs4cImplicits
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class RichArgs extends AnyRef

    Permalink
    Definition Classes
    LowPriorityArgs4cImplicits
  2. implicit class RichString extends AnyRef

    Permalink
    Definition Classes
    LowPriorityArgs4cImplicits

Abstract Value Members

  1. abstract def config: Config

    Permalink

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def asDuration(key: String): Duration

    Permalink

    key

    the configuration path

    returns

    the value at the given key as a scala duration

  5. def asFiniteDuration(key: String): FiniteDuration

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def asJson: String

    Permalink

    returns

    the configuration as a json string

  8. def asList(path: String, separator: Option[String] = Option(",")): List[String]

    Permalink

    produces a scala list, either from a StringList or a comma-separated string value

    produces a scala list, either from a StringList or a comma-separated string value

    path

    the config path

    separator

    if specified, the value at the given path will be parsed if it is a string and not a stringlist

  9. implicit def asRichConfig(c: Config): RichConfig

    Permalink
    Definition Classes
    LowPriorityArgs4cImplicits
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def collectAsMap(options: ConfigRenderOptions = defaultRenderOptions): Map[String, String]

    Permalink

    returns

    the configuration as a map

  12. def collectAsStrings(options: ConfigRenderOptions = defaultRenderOptions): Seq[(String, String)]

    Permalink

    returns

    the configuration as a set of key/value tuples

  13. def defaultRenderOptions: ConfigRenderOptions

    Permalink
  14. def encrypt(password: Array[Byte]): Array[Byte]

    Permalink

    returns

    the encrypted configuration

  15. def entries: Set[(String, ConfigValue)]

    Permalink

    returns

    the configuration entries as a set of entries

  16. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def filter(path: (String) ⇒ Boolean): Config

    Permalink
  19. def filterNot(path: (String) ⇒ Boolean): Config

    Permalink
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def intersect(other: Config): Config

    Permalink

    returns

    the configuration representing the intersection of the two configuration entries

  24. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  28. def origins: List[String]

    Permalink

    returns

    a sorted list of the origins from when the config values come

  29. def pathRoots: Seq[String]

    Permalink

    The available config roots.

    The available config roots.

    e.g. of a config has

    foo.bar.x = 1
    java.home = /etc/java
    bar.enabled = true
    bar.user = root

    The 'pathRoots' would return a [bar, foo, java]

    returns

    a sorted list of the root entries to the config.

  30. def paths: Seq[String]

    Permalink

    returns

    all the unique paths for this configuration

  31. def showIfSpecified(obscure: (String, String) ⇒ String = obscurePassword(_, _)): Option[String]

    Permalink

    If 'show=X' is specified, configuration values which contain X in their path will be displayed with the values matching 'obscure' obscured.

    If 'show=X' is specified, configuration values which contain X in their path will be displayed with the values matching 'obscure' obscured.

    If 'X' is 'all' or 'root', then the entire configuration is rendered.

    This can be useful to debug other command-line args (to ensure they take the desired effect) or to validate the environment variable replacement

    obscure

    a function which takes a dotted configuration path and string value and returns the value to display

    returns

    the optional value of what's pointed to if 'show=<path>' is specified

  32. def summary(obscure: (String, String) ⇒ String = obscurePassword(_, _)): String

    Permalink

    Return a property-like summary of the config using the pathFilter to trim property entries

    Return a property-like summary of the config using the pathFilter to trim property entries

    obscure

    a function which will 'safely' replace any config values with an obscured value

    returns

    a summary of the configuration

  33. def summaryEntries(obscure: (String, String) ⇒ String = obscurePassword(_, _)): Seq[StringEntry]

    Permalink

    Return a property-like summary of the config using the 'obscure' function to mask sensitive entries

    Return a property-like summary of the config using the 'obscure' function to mask sensitive entries

    obscure

    a function which will 'safely' replace any config values with an obscured value

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toMap: Map[String, ConfigValue]

    Permalink

    returns

    the config as a map

  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. def uniquePaths: Seq[String]

    Permalink

    And example which uses most of the below stuff to showcase what this is for Note : writing a 'diff' using this would be pretty straight forward

  38. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. def withPaths(paths: Seq[String]): Config

    Permalink

    returns

    this configuration which only contains the specified paths

  42. def withPaths(first: String, theRest: String*): Config

    Permalink

    first

    the first path to include (keep)

    theRest

    any other paths to keep

    returns

    this configuration which only contains the specified paths

  43. def withUserArgs(args: Array[String], unrecognizedArg: (String) ⇒ Config = ParseArg.Throw): Config

    Permalink

    Overlay the given arguments over this configuration, where the arguments are taken to be in the form:

    Overlay the given arguments over this configuration, where the arguments are taken to be in the form:

    $ the path to a configuration file, either on the classpath or file system $ a <key>=<value> pair where the key is a 'path.to.a.configuration.entry'

    args

    the user arguments in the form <key>=<value>, <filePath> or <fileOnTheClasspath>

    unrecognizedArg

    what to do with malformed user input

    returns

    a configuration with the given user-argument overrides applied over top

  44. def without(configPaths: TraversableOnce[String]): Config

    Permalink
  45. def without(firstPath: String, theRest: String*): Config

    Permalink
  46. def without(other: Config): Config

    Permalink
  47. def withoutSystem: Config

    Permalink

    this config w/o the system properties or environment variables

Inherited from AnyRef

Inherited from Any

Ungrouped