ConfigParseOptions

A set of options related to parsing.

A set of options related to parsing.

This object is immutable, so the "setters" return a new object.

Here is an example of creating a custom ConfigParseOptions:

   ConfigParseOptions options = ConfigParseOptions.defaults()
       .setSyntax(ConfigSyntax.JSON)
       .setAllowMissing(false)
Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

Gets an instance of ConfigParseOptions with all fields set to the default values. Start with this instance and make any changes you need.

Gets an instance of ConfigParseOptions with all fields set to the default values. Start with this instance and make any changes you need.

Returns

the default parse options