public interface ConfigParseable
ConfigIncludeContext
.
Do not implement this interface; it should only be implemented by the config library. Arbitrary implementations will not work because the library internals assume a specific concrete implementation. Also, this interface is likely to grow new methods over time, so third-party implementations will break.
Modifier and Type | Method and Description |
---|---|
ConfigParseOptions |
options()
Get the initial options, which can be modified then passed to parse().
|
ConfigOrigin |
origin()
Returns a
ConfigOrigin describing the origin of the parseable
item. |
ConfigObject |
parse(ConfigParseOptions options)
Parse whatever it is.
|
parse(ConfigParseOptions options)
options()
but you could tweak them if you
like.options
- parse options, should be based on the ones from
options()
origin()
ConfigOrigin
describing the origin of the parseable
item.options()