Class/Object

org.ekrich.config.impl

SimpleConfig

Related Docs: object SimpleConfig | package impl

Permalink

final class SimpleConfig extends Config with MergeableValue with Serializable

Annotations
@SerialVersionUID()
Linear Supertypes
Serializable, MergeableValue, Config, ConfigMergeable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleConfig
  2. Serializable
  3. MergeableValue
  4. Config
  5. ConfigMergeable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def atKey(key: String): SimpleConfig

    Permalink

    Places the config inside a Config at the given key.

    Places the config inside a Config at the given key. See also atPath. Note that a key is NOT a path expression (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    key

    key to store this config at.

    returns

    a Config instance containing this config at the given key.

    Definition Classes
    SimpleConfigConfig
  6. def atPath(path: String): Config

    Permalink

    Places the config inside another Config at the given path.

    Places the config inside another Config at the given path.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    path

    path expression to store this config at.

    returns

    a { @code Config} instance containing this config at the given path.

    Definition Classes
    SimpleConfigConfig
  7. def checkValid(reference: Config, restrictToPaths: String*): Unit

    Permalink

    Validates this config against a reference config, throwing an exception if it is invalid.

    Validates this config against a reference config, throwing an exception if it is invalid. The purpose of this method is to "fail early" with a comprehensive list of problems; in general, anything this method can find would be detected later when trying to use the config, but it's often more user-friendly to fail right away when loading the config.

    Using this method is always optional, since you can "fail late" instead.

    You must restrict validation to paths you "own" (those whose meaning are defined by your code module). If you validate globally, you may trigger errors about paths that happen to be in the config but have nothing to do with your module. It's best to allow the modules owning those paths to validate them. Also, if every module validates only its own stuff, there isn't as much redundant work being done.

    If no paths are specified in checkValid's parameter list, validation is for the entire config.

    If you specify paths that are not in the reference config, those paths are ignored. (There's nothing to validate.)

    Here's what validation involves:

    • All paths found in the reference config must be present in this config or an exception will be thrown.
    • Some changes in type from the reference config to this config will cause an exception to be thrown. Not all potential type problems are detected, in particular it's assumed that strings are compatible with everything except objects and lists. This is because string types are often "really" some other type (system properties always start out as strings, or a string like "5ms" could be used with getDuration(String)). Also, it's allowed to set any type to null or override null with any type.
    • Any unresolved substitutions in this config will cause a validation failure; both the reference config and this config should be resolved before validation. If the reference config is unresolved, it's a bug in the caller of this method.

    If you want to allow a certain setting to have a flexible type (or otherwise want validation to be looser for some settings), you could either remove the problematic setting from the reference config provided to this method, or you could intercept the validation exception and screen out certain problems. Of course, this will only work if all other callers of this method are careful to restrict validation to their own paths, as they should be.

    If validation fails, the thrown exception contains a list of all problems found. See ConfigException.ValidationFailed#problems. The exception's getMessage will have all the problems concatenated into one huge string, as well.

    Again, checkValid can't guess every domain-specific way a setting can be invalid, so some problems may arise later when attempting to use the config. checkValid is limited to reporting generic, but common, problems such as missing settings and blatant type incompatibilities.

    reference

    a reference configuration

    restrictToPaths

    only validate values underneath these paths that your code module owns and understands

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BugOrBroken if the reference config is unresolved or caller otherwise misuses the API

    ConfigException.NotResolved if this config is not resolved

    ConfigException.ValidationFailed if there are any validation issues

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val confObj: AbstractConfigObject

    Permalink
  10. def entrySet: Set[Entry[String, ConfigValue]]

    Permalink

    Returns the set of path-value pairs, excluding any null values, found by recursing the root object.

    Returns the set of path-value pairs, excluding any null values, found by recursing the root object. Note that this is very different from root.entrySet which returns the set of immediate-child keys in the root object and includes null values.

    Entries contain path expressions meaning there may be quoting and escaping involved. Parse path expressions with ConfigUtil#splitPath.

    Because a Config is conceptually a single-level map from paths to values, there will not be any ConfigObject values in the entries (that is, all entries represent leaf nodes). Use ConfigObject rather than Config if you want a tree. (OK, this is a slight lie: Config entries may contain ConfigList and the lists may contain objects. But no objects are directly included as entry values.)

    returns

    set of paths with non-null values, built up by recursing the entire tree of { @link ConfigObject} and creating an entry for each leaf value.

    Definition Classes
    SimpleConfigConfig
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. final def equals(other: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def getAnyRef(path: String): AnyRef

    Permalink

    Gets the value at the path as an unwrapped Java boxed value ( java.lang.Boolean java.lang.Integer, and so on - see ConfigValue#unwrapped).

    Gets the value at the path as an unwrapped Java boxed value ( java.lang.Boolean java.lang.Integer, and so on - see ConfigValue#unwrapped).

    path

    path expression

    returns

    the unwrapped value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

  15. def getAnyRefList(path: String): List[_ <: AnyRef]

    Permalink

    Gets a list value with any kind of elements.

    Gets a list value with any kind of elements. Throws if the path is unset or null or not a list. Each element is "unwrapped" (see ConfigValue#unwrapped).

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list

  16. def getBoolean(path: String): Boolean

    Permalink

    path

    path expression

    returns

    the boolean value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to boolean

  17. def getBooleanList(path: String): List[Boolean]

    Permalink

    Gets a list value with boolean elements.

    Gets a list value with boolean elements. Throws if the path is unset or null or not a list or contains values not convertible to boolean.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of booleans

  18. def getBytes(path: String): Long

    Permalink

    Gets a value as a size in bytes (parses special strings like "128M").

    Gets a value as a size in bytes (parses special strings like "128M"). If the value is already a number, then it's left alone; if it's a string, it's parsed understanding unit suffixes such as "128K", as documented in the the spec.

    path

    path expression

    returns

    the value at the requested path, in bytes

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a size in bytes

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  19. def getBytesList(path: String): List[Long]

    Permalink

    Gets a list value with elements representing a size in bytes.

    Gets a list value with elements representing a size in bytes. Throws if the path is unset or null or not a list or contains values not convertible to memory sizes.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of memory sizes

  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def getConfig(path: String): SimpleConfig

    Permalink

    path

    path expression

    returns

    the nested Config value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a Config

  22. def getConfigList(path: String): List[_ <: Config]

    Permalink

    Gets a list value with Config elements.

    Gets a list value with Config elements. Throws if the path is unset or null or not a list or contains values not convertible to Config.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of configs

  23. def getDouble(path: String): Double

    Permalink

    path

    path expression

    returns

    the floating-point value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a double

  24. def getDoubleList(path: String): List[Double]

    Permalink

    Gets a list value with double elements.

    Gets a list value with double elements. Throws if the path is unset or null or not a list or contains values not convertible to double.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of doubles

  25. def getDuration(path: String): Duration

    Permalink

    Gets a value as a java.time.Duration.

    Gets a value as a java.time.Duration. If the value is already a number, then it's taken as milliseconds; if it's a string, it's parsed understanding units suffixes like "10m" or "5ns" as documented in the <a href="https://github.com/lightbend/config/blob/master/HOCON.md">the spec. This method never returns null.

    path

    path expression

    returns

    the duration value at the requested path

    Definition Classes
    SimpleConfigConfig
    Since

    1.3.0

    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a number of the given TimeUnit

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  26. def getDuration(path: String, unit: TimeUnit): Long

    Permalink

    Gets a value as a duration in a specified java.util.concurrent.TimeUnit.

    Gets a value as a duration in a specified java.util.concurrent.TimeUnit. If the value is already a number, then it's taken as milliseconds and then converted to the requested TimeUnit; if it's a string, it's parsed understanding units suffixes like "10m" or "5ns" as documented in the <a the HOCON spec.

    path

    path expression

    unit

    convert the return value to this time unit

    returns

    the duration value at the requested path, in the given TimeUnit

    Definition Classes
    SimpleConfigConfig
    Since

    1.2.0

    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a number of the given TimeUnit

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  27. def getDurationList(path: String): List[Duration]

    Permalink

    Gets a list, converting each value in the list to a duration, using the same rules as getDuration(String).

    Gets a list, converting each value in the list to a duration, using the same rules as getDuration(String).

    path

    a path expression

    returns

    list of durations

    Definition Classes
    SimpleConfigConfig
    Since

    1.3.0

  28. def getDurationList(path: String, unit: TimeUnit): List[Long]

    Permalink

    Gets a list, converting each value in the list to a duration, using the same rules as getDuration(String, TimeUnit).

    Gets a list, converting each value in the list to a duration, using the same rules as getDuration(String, TimeUnit).

    path

    a path expression

    unit

    time units of the returned values

    returns

    list of durations, in the requested units

    Definition Classes
    SimpleConfigConfig
    Since

    1.2.0

  29. def getEnum[T <: Enum[T]](enumClass: Class[T], path: String): T

    Permalink

    enumClass

    an enum class

    path

    path expression

    returns

    the { @code Enum} value at the requested path of the requested enum class

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to an Enum

  30. def getEnumList[T <: Enum[T]](enumClass: Class[T], path: String): List[T]

    Permalink

    Gets a list value with Enum elements.

    Gets a list value with Enum elements. Throws if the path is unset or null or not a list or contains values not convertible to Enum.

    enumClass

    the enum class

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of { @code Enum}

  31. def getInt(path: String): Int

    Permalink

    Gets the integer at the given path.

    Gets the integer at the given path. If the value at the path has a fractional (floating point) component, it will be discarded and only the integer part will be returned (it works like a "narrowing primitive conversion" in the Java language specification).

    path

    path expression

    returns

    the 32-bit integer value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to an int (for example it is out of range, or it's a boolean value)

  32. def getIntList(path: String): List[Integer]

    Permalink

    Gets a list value with int elements.

    Gets a list value with int elements. Throws if the path is unset or null or not a list or contains values not convertible to int.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of ints

  33. def getIsNull(path: String): Boolean

    Permalink

    Checks whether a value is set to null at the given path, but throws an exception if the value is entirely unset.

    Checks whether a value is set to null at the given path, but throws an exception if the value is entirely unset. This method will not throw if #hasPathOrNull returned true for the same path, so to avoid any possible exception check hasPathOrNull first. However, an exception for unset paths will usually be the right thing (because a reference.conf should exist that has the path set, the path should never be unset unless something is broken).

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    path

    the path expression

    returns

    true if the value exists and is null, false if it exists and is not null

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BadPath if the path expression is invalid

    ConfigException.Missing if value is not set at all

  34. def getList(path: String): ConfigList

    Permalink

    Gets a list value (with any element type) as a ConfigList, which implements java.util.List.

    Gets a list value (with any element type) as a ConfigList, which implements java.util.List. Throws if the path is unset or null.

    path

    the path to the list value.

    returns

    the { @link ConfigList} at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a ConfigList

  35. def getLong(path: String): Long

    Permalink

    Gets the long integer at the given path.

    Gets the long integer at the given path. If the value at the path has a fractional (floating point) component, it will be discarded and only the integer part will be returned (it works like a "narrowing primitive conversion" in the Java language specification).

    path

    path expression

    returns

    the 64-bit long value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a long

  36. def getLongList(path: String): List[Long]

    Permalink

    Gets a list value with long elements.

    Gets a list value with long elements. Throws if the path is unset or null or not a list or contains values not convertible to long.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of longs

  37. def getMemorySize(path: String): ConfigMemorySize

    Permalink

    Gets a value as an amount of memory (parses special strings like "128M").

    Gets a value as an amount of memory (parses special strings like "128M"). If the value is already a number, then it's left alone; if it's a string, it's parsed understanding unit suffixes such as "128K", as documented in the the spec.

    path

    path expression

    returns

    the value at the requested path, in bytes

    Definition Classes
    SimpleConfigConfig
    Since

    1.3.0

    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a size in bytes

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  38. def getMemorySizeList(path: String): List[ConfigMemorySize]

    Permalink

    Gets a list, converting each value in the list to a memory size, using the same rules as #getMemorySize.

    Gets a list, converting each value in the list to a memory size, using the same rules as #getMemorySize.

    path

    a path expression

    returns

    list of memory sizes

    Definition Classes
    SimpleConfigConfig
    Since

    1.3.0

    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of memory sizes

  39. def getNumber(path: String): Number

    Permalink

    path

    path expression

    returns

    the numeric value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a number

  40. def getNumberList(path: String): List[Number]

    Permalink

    Gets a list value with number elements.

    Gets a list value with number elements. Throws if the path is unset or null or not a list or contains values not convertible to number.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of numbers

  41. def getObject(path: String): AbstractConfigObject

    Permalink

    path

    path expression

    returns

    the { @link ConfigObject} value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to an object

  42. def getObjectList(path: String): List[ConfigObject]

    Permalink

    Gets a list value with object elements.

    Gets a list value with object elements. Throws if the path is unset or null or not a list or contains values not convertible to ConfigObject.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of objects

  43. def getPeriod(path: String): Period

    Permalink

    Gets a value as a java.time.Period.

    Gets a value as a java.time.Period. If the value is already a number, then it's taken as days; if it's a string, it's parsed understanding units suffixes like "10d" or "5w" as documented in the <a href="https://github.com/lightbend/config/blob/master/HOCON.md">the spec. This method never returns null.

    path

    path expression

    returns

    the period value at the requested path

    Definition Classes
    SimpleConfigConfig
    Since

    1.3.0

    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a number of the given TimeUnit

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  44. def getString(path: String): String

    Permalink

    path

    path expression

    returns

    the string value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a string

  45. def getStringList(path: String): List[String]

    Permalink

    Gets a list value with string elements.

    Gets a list value with string elements. Throws if the path is unset or null or not a list or contains values not convertible to string.

    path

    the path to the list value.

    returns

    the list at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to a list of strings

  46. def getTemporal(path: String): TemporalAmount

    Permalink

    Gets a value as a java.time.temporal.TemporalAmount.

    Gets a value as a java.time.temporal.TemporalAmount. This method will first try get get the value as a java.time.Duration, and if unsuccessful, then as a java.time.Period. This means that values like "5m" will be parsed as 5 minutes rather than 5 months

    path

    path expression

    returns

    the temporal value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BadValue if value cannot be parsed as a TemporalAmount

    ConfigException.Missing if value is absent or null

    ConfigException.WrongType if value is not convertible to Long or String

  47. def getValue(path: String): AbstractConfigValue

    Permalink

    Gets the value at the given path, unless the value is a null value or missing, in which case it throws just like the other getters.

    Gets the value at the given path, unless the value is a null value or missing, in which case it throws just like the other getters. Use get on the Config#root object (or other object in the tree) if you want an unprocessed value.

    path

    path expression

    returns

    the value at the requested path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.Missing if value is absent or null

  48. def hasPath(pathExpression: String): Boolean

    Permalink

    Checks whether a value is present and non-null at the given path.

    Checks whether a value is present and non-null at the given path. This differs in two ways from Map.containsKey as implemented by ConfigObject: it looks for a path expression, not a key; and it returns false for null values, while containsKey returns true indicating that the object contains a null value for the key.

    If a path exists according to #hasPath, then #getValue will never throw an exception. However, the typed getters, such as #getInt, will still throw if the value is not convertible to the requested type.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    returns

    true if a non-null value is present at the path

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BadPath if the path expression is invalid

  49. def hasPathOrNull(path: String): Boolean

    Permalink

    Checks whether a value is present at the given path, even if the value is null.

    Checks whether a value is present at the given path, even if the value is null. Most of the getters on Config will throw if you try to get a null value, so if you plan to call #getValue, #getInt, or another getter you may want to use plain #hasPath rather than this method.

    To handle all three cases (unset, null, and a non-null value) the code might look like:

    if (config.hasPathOrNull(path)) {
      if (config.getIsNull(path)) {
        // handle null setting
      } else {
        // get and use non-null setting
      }
    } else {
      // handle entirely unset path
    }

    However, the usual thing is to allow entirely unset paths to be a bug that throws an exception (because you set a default in your reference.conf), so in that case it's OK to call #getIsNull without checking hasPathOrNull first.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    path

    the path expression

    returns

    true if a value is present at the path, even if the value is null

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException.BadPath if the path expression is invalid

  50. final def hashCode(): Int

    Permalink
    Definition Classes
    SimpleConfig → AnyRef → Any
  51. def isEmpty: Boolean

    Permalink

    Returns true if the Config's root object contains no key-value pairs.

    Returns true if the Config's root object contains no key-value pairs.

    returns

    true if the configuration is empty

    Definition Classes
    SimpleConfigConfig
  52. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  53. def isResolved: Boolean

    Permalink

    Checks whether the config is completely resolved.

    Checks whether the config is completely resolved. After a successful call to resolve() it will be completely resolved, but after calling resolve(ConfigResolveOptions) with allowUnresolved set in the options, it may or may not be completely resolved. A newly-loaded config may or may not be completely resolved depending on whether there were substitutions present in the file.

    returns

    true if there are no unresolved substitutions remaining in this configuration.

    Definition Classes
    SimpleConfigConfig
    Since

    1.2.0

  54. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  57. def origin: ConfigOrigin

    Permalink

    Gets the origin of the Config, which may be a file, or a file with a line number, or just a descriptive phrase.

    Gets the origin of the Config, which may be a file, or a file with a line number, or just a descriptive phrase.

    returns

    the origin of the Config for use in error messages

    Definition Classes
    SimpleConfigConfig
  58. def resolve(options: ConfigResolveOptions): SimpleConfig

    Permalink

    Like resolve() but allows you to specify non-default options.

    Like resolve() but allows you to specify non-default options.

    options

    resolve options

    returns

    the resolved Config (may be only partially resolved if options are set to allow unresolved)

    Definition Classes
    SimpleConfigConfig
  59. def resolve(): SimpleConfig

    Permalink

    Returns a replacement config with all substitutions (the ${foo.bar} syntax, see HOCON spec for resolved.

    Returns a replacement config with all substitutions (the ${foo.bar} syntax, see HOCON spec for resolved. Substitutions are looked up using this Config as the root object, that is, a substitution ${foo.bar} will be replaced with the result of getValue("foo.bar").

    This method uses ConfigResolveOptions#defaults, there is another variant resolve(ConfigResolveOptions) which lets you specify non-default options.

    A given Config must be resolved before using it to retrieve config values, but ideally should be resolved one time for your entire stack of fallbacks (see Config#withFallback). Otherwise, some substitutions that could have resolved with all fallbacks available may not resolve, which will be potentially confusing for your application's users.

    resolve should be invoked on root config objects, rather than on a subtree (a subtree is the result of something like config.getConfig("foo")). The problem with resolve on a subtree is that substitutions are relative to the root of the config and the subtree will have no way to get values from the root. For example, if you did config.getConfig("foo").resolve on the below config file, it would not work:

    common-value = 10
    foo {
      whatever = ${common-value}
    }

    Many methods on ConfigFactory such as ConfigFactory.load() automatically resolve the loaded Config on the loaded stack of config files.

    Resolving an already-resolved config is a harmless no-op, but again, it is best to resolve an entire stack of fallbacks (such as all your config files combined) rather than resolving each one individually.

    returns

    an immutable object with substitutions resolved

    Definition Classes
    SimpleConfigConfig
    Exceptions thrown

    ConfigException some other config exception if there are other problems

    ConfigException.UnresolvedSubstitution if any substitutions refer to nonexistent paths

  60. def resolveWith(source: Config, options: ConfigResolveOptions): SimpleConfig

    Permalink

    Like resolveWith(Config) but allows you to specify non-default options.

    Like resolveWith(Config) but allows you to specify non-default options.

    source

    source configuration to pull values from

    options

    resolve options

    returns

    the resolved Config (may be only partially resolved if options are set to allow unresolved)

    Definition Classes
    SimpleConfigConfig
    Since

    1.2.0

  61. def resolveWith(source: Config): SimpleConfig

    Permalink

    Like resolve() except that substitution values are looked up in the given source, rather than in this instance.

    Like resolve() except that substitution values are looked up in the given source, rather than in this instance. This is a special-purpose method which doesn't make sense to use in most cases; it's only needed if you're constructing some sort of app-specific custom approach to configuration. The more usual approach if you have a source of substitution values would be to merge that source into your config stack using Config#withFallback and then resolve.

    Note that this method does NOT look in this instance for substitution values. If you want to do that, you could either merge this instance into your value source using Config#withFallback, or you could resolve multiple times with multiple sources (using ConfigResolveOptions#setAllowUnresolved so the partial resolves don't fail).

    source

    configuration to pull values from

    returns

    an immutable object with substitutions resolved

    Definition Classes
    SimpleConfigConfig
    Since

    1.2.0

    Exceptions thrown

    ConfigException some other config exception if there are other problems

    ConfigException.UnresolvedSubstitution if any substitutions refer to paths which are not in the source

  62. def root: AbstractConfigObject

    Permalink

    Gets the Config as a tree of ConfigObject.

    Gets the Config as a tree of ConfigObject. This is a constant-time operation (it is not proportional to the number of values in the Config).

    returns

    the root object in the configuration

    Definition Classes
    SimpleConfigConfig
  63. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  64. def toFallbackValue: AbstractConfigObject

    Permalink
    Definition Classes
    SimpleConfigMergeableValue
  65. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. def withFallback(other: ConfigMergeable): SimpleConfig

    Permalink

    Returns a new value computed by merging this value with another, with keys in this value "winning" over the other one.

    Returns a new value computed by merging this value with another, with keys in this value "winning" over the other one.

    This associative operation may be used to combine configurations from multiple sources (such as multiple configuration files).

    The semantics of merging are described in the spec for HOCON. Merging typically occurs when either the same object is created twice in the same file, or two config files are both loaded. For example:

    foo = { a: 42 }
    foo = { b: 43 }

    Here, the two objects are merged as if you had written:

    foo = { a: 42, b: 43 }

    Only ConfigObject and Config instances do anything in this method (they need to merge the fallback keys into themselves). All other values just return the original value, since they automatically override any fallback. This means that objects do not merge "across" non-objects; if you write object.withFallback(nonObject).withFallback(otherObject), then otherObjectwill simply be ignored. This is an intentional part of how merging works, because non-objects such as strings and integers replace (rather than merging with) any prior value:

    foo = { a: 42 }
    foo = 10

    Here, the number 10 "wins" and the value of foo would be simply 10. Again, for details see the spec.

    other

    an object whose keys should be used as fallbacks, if the keys are not present in this one

    returns

    a new object (or the original one, if the fallback doesn't get used)

    Definition Classes
    SimpleConfigConfigConfigMergeable
  70. def withOnlyPath(pathExpression: String): SimpleConfig

    Permalink

    Clone the config with only the given path (and its children) retained; all sibling paths are removed.

    Clone the config with only the given path (and its children) retained; all sibling paths are removed.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    returns

    a copy of the config minus all paths except the one specified

    Definition Classes
    SimpleConfigConfig
  71. def withValue(pathExpression: String, v: ConfigValue): SimpleConfig

    Permalink

    Returns a Config based on this one, but with the given path set to the given value.

    Returns a Config based on this one, but with the given path set to the given value. Does not modify this instance (since it's immutable). If the path already has a value, that value is replaced. To remove a value, use withoutPath.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    returns

    the new instance with the new map entry

    Definition Classes
    SimpleConfigConfig
  72. def withoutPath(pathExpression: String): SimpleConfig

    Permalink

    Clone the config with the given path removed.

    Clone the config with the given path removed.

    Note that path expressions have a syntax and sometimes require quoting (see ConfigUtil$.joinPath(elements:String*)* and ConfigUtil#splitPath).

    returns

    a copy of the config minus the specified path

    Definition Classes
    SimpleConfigConfig

Inherited from Serializable

Inherited from MergeableValue

Inherited from Config

Inherited from ConfigMergeable

Inherited from AnyRef

Inherited from Any

Ungrouped