object LazyConfigFactory
Contains static methods for creating Config instances in a lazy way.
The loading process resolves variables lazily - configurations are first completely loaded and merged
(reference.conf, the application file and default overrides) and only then are variables resolved. This
ConfigFactory also considers a third standard configuration file, overrides.conf, which has priority over the
application file and can be used to specify keys that should always be overriden, e.g. by environment variables if
they are defined.
- Alphabetic
- By Inheritance
- LazyConfigFactory
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
trait
Builder
extends AnyRef
A
Configbuilder providing a DSL for retireving and modifying configs.A
Configbuilder providing a DSL for retireving and modifying configs.- Annotations
- @deprecated
- Deprecated
(Since version 2017/07/13) Use pureconfig for loading the root object and then manipulate domain objects directly
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def defaultApplication(parseOptions: ConfigParseOptions): Config
- def defaultOverrides(parseOptions: ConfigParseOptions): Config
- def defaultReference(parseOptions: ConfigParseOptions): Config
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def load(config: Config, parseOptions: ConfigParseOptions, resolveOptions: ConfigResolveOptions): Config
- def load(parseOptions: ConfigParseOptions, resolveOptions: ConfigResolveOptions): Config
- def load(resourceBasename: String): Config
- lazy val load: Config
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
loadAt(path: String): Builder
Returns a
LazyConfigFactory.Buildertargeted at a path of the default config.Returns a
LazyConfigFactory.Buildertargeted at a path of the default config.- path
the target path of the default config
- returns
a
LazyConfigFactory.Buildertargeted at the given path of the default config.
- Annotations
- @deprecated
- Deprecated
(Since version 2017/07/13) Use pureconfig for loading the root object and then manipulate domain objects directly