Package | Description |
---|---|
com.typesafe.config |
An API for loading and using configuration files, see the project site
for more information.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Config
An immutable map from config paths to config values.
|
interface |
ConfigList
Subtype of
ConfigValue representing a list value, as in JSON's
[1,2,3] syntax. |
interface |
ConfigObject
Subtype of
ConfigValue representing an object (AKA dictionary or map)
value, as in JSON's curly brace { "a" : 42 } syntax. |
interface |
ConfigValue
An immutable value, following the JSON type
schema.
|
Modifier and Type | Method and Description |
---|---|
ConfigMergeable |
ConfigMergeable.withFallback(ConfigMergeable other)
Returns a new value computed by merging this value with another, with
keys in this value "winning" over the other one.
|
Modifier and Type | Method and Description |
---|---|
ConfigObject |
ConfigObject.withFallback(ConfigMergeable other) |
ConfigValue |
ConfigValue.withFallback(ConfigMergeable other) |
ConfigMergeable |
ConfigMergeable.withFallback(ConfigMergeable other)
Returns a new value computed by merging this value with another, with
keys in this value "winning" over the other one.
|
Config |
Config.withFallback(ConfigMergeable other) |
Copyright © 2018 com.typesafe. All rights reserved.