|
||||||||
PREV NEXT | FRAMES NO FRAMES |
Config
at the given key.
Config
at the given key.
Config
at the given path.
Config
at the given path.
ConfigException
.Config.resolve()
was not called).Config.checkValid(com.typesafe.config.Config, java.lang.String...)
found validity
problems.Config.checkValid(com.typesafe.config.Config, java.lang.String...)
.Config
instances.ConfigIncluder
; this interface is only useful
inside a ConfigIncluder
implementation, and is not intended for apps
to implement.ConfigParseOptions.setIncluder()
to
customize handling of include
statements in config files.ConfigIncluder
if you want to
support inclusion of files with the include classpath("resource")
syntax.ConfigIncluder
if you want to
support inclusion of files with the include file("filename")
syntax.ConfigIncluder
if you want to
support inclusion of files with the include url("http://example.com")
syntax.ConfigValue
representing a list value, as in JSON's
[1,2,3]
syntax.Config
and
ConfigValue
.ConfigValue
representing an object (dictionary, map)
value, as in JSON's { "a" : 42 }
syntax.ConfigValue
for use in error messages.ConfigIncludeContext
.ConfigValue
.ConfigValue
instances.ConfigFactory.defaultOverrides()
but allows you to specify a class loader
to use rather than the current context class loader.
ConfigFactory.defaultReference()
but allows you to specify a class loader
to use rather than the current context class loader.
ConfigOrigin
for this Config
.
the root object
.
ConfigValueFactory.fromAnyRef(Object,String)
for details,
this one just uses a default origin description.
ConfigValueFactory.fromIterable(Iterable, String)
for
details, this one just uses a default origin description.
ConfigValueFactory.fromMap(Map,String)
for details, this one
just uses a default origin description.
ConfigValue
at the given key, or returns null if there is
no value.
Boolean
, Integer
, and
so on - see ConfigValue.unwrapped()
).
null
, if the class loader was
unset, returns
Thread.currentThread().getContextClassLoader()
.
ConfigList
, which
implements java.util.List<ConfigValue>
.
Config
's root object contains no key-value
pairs.
ConfigFactory.load(String)
but uses the supplied class loader instead of
the current thread's context class loader.
ConfigFactory.load(String)
but allows you to specify parse and resolve
options.
ConfigFactory.load(String,ConfigParseOptions,ConfigResolveOptions)
but
has a class loader parameter that overrides any from the
ConfigParseOptions
.
Config
object rather than loading "application.conf".
ConfigFactory.load(Config)
but allows you to specify
ConfigResolveOptions
.
ConfigFactory.load(Config,ConfigResolveOptions)
but allows you to specify
a class loader other than the context class loader.
load("application")
in most cases.
ConfigFactory.load()
but allows specifying parse options
ConfigFactory.load()
but allows specifying a class loader other than the
thread's current context class loader.
ConfigFactory.load()
but allows specifying a class loader other than the
thread's current context class loader, and parse options
ConfigFactory.load()
but allows specifying a class loader other than the
thread's current context class loader, and resolve options
ConfigFactory.load()
but allows specifying a class loader other than the
thread's current context class loader, parse options, and resolve options
Config
, which may be a file, or a file
with a line number, or just a descriptive phrase.
ConfigOrigin
describing the origin of the parseable
item.
Config
based on a Map
from paths to
plain Java values.
ConfigFactory.parseMap(Map, String)
for details,
this one just uses a default origin description.
ConfigParseable
then use ConfigParseable.options()
instead though).
Properties
object to a
ConfigObject
using the rules documented in the HOCON
spec.
Config
.
Config
.
ConfigFactory.parseResources(ClassLoader,String,ConfigParseOptions)
but
uses thread's current context class loader.
ConfigFactory.parseResources(ClassLoader,String)
but uses thread's
current context class loader.
ConfigFactory.parseResourcesAnySyntax(ClassLoader,String,ConfigParseOptions)
but uses thread's current context class loader.
ConfigFactory.parseResourcesAnySyntax(ClassLoader,String)
but uses
thread's current context class loader.
${foo.bar}
syntax, see the
spec) resolved.
Config.resolve()
but allows you to specify non-default
options.
Config
as a tree of ConfigObject
.
Config
containing the system's environment variables.
Config
containing the system properties from
System.getProperties()
, parsed and converted as with
ConfigFactory.parseProperties(java.util.Properties, com.typesafe.config.ConfigParseOptions)
.
Config
instance, enabling you to use
path expressions to find values in the object.
String
,
Number
, Boolean
, Map<String,Object>
,
List<Object>
, or null
, matching the ConfigValue.valueType()
of this ConfigValue
.
ConfigValueType
of the value; matches the JSON type schema.
Config
based on this one, but with the given path set
to the given value.
ConfigObject
based on this one, but with the given key
set to the given value.
|
||||||||
PREV NEXT | FRAMES NO FRAMES |