See: Description
| Interface | Description |
|---|---|
| ConfigDocument |
Represents an individual HOCON or JSON file, preserving all
formatting and syntax details.
|
| ConfigNode |
A node in the syntax tree for a HOCON or JSON document.
|
| Class | Description |
|---|---|
| ConfigDocumentFactory |
Factory for creating
ConfigDocument instances. |
This package supplies a raw parser and syntax tree for individual HOCON and JSON
files. You do not want this package for everyday config in your app: see
the com.typesafe.config package instead. You would use the raw
parser if you're doing something like reading, modifying, and re-saving a config
file. For info on the main config API this parser is a part of,
see the project site.
For working with the raw syntax tree, some important classes are:
ConfigDocument - a loaded HOCON
or JSON documentConfigDocumentFactory -
static methods to instantiate a documentConfigNode - syntax node
in a document