Class Config
java.lang.Object
com.github.mizool.core.configuration.Config
Main entry point for the configuration API.
-
Method Summary
Modifier and TypeMethodDescriptionstatic RootNode
blank()
Creates a root node without any properties.static RootNode
from
(Properties properties) Creates a root node encapsulating access to the givenProperties
instance.static RootNode
Creates a root node encapsulating access to the current system properties.
-
Method Details
-
blank
Creates a root node without any properties. Usually used as a starting point followed by multipleRootNode.add()
calls. -
systemProperties
Creates a root node encapsulating access to the current system properties. -
from
Creates a root node encapsulating access to the givenProperties
instance.
-