Interface StandardOptions
-
public interface StandardOptions
-
-
Field Summary
Fields Modifier and Type Field Description static ConfigurationOption<java.lang.Boolean>LOAD_SUB_CLASSESWhether to load subclasses of configuration class.static ConfigurationOption<java.lang.Character>PATH_SEPARATORThe configuration path separator.static ConfigurationOption<java.lang.Boolean>PRELOADWhether to pre parse the config values, may good to set true if you want to keep the config format.static ConfigurationOption<java.lang.Boolean>SET_DEFAULTSWhether to set and save default values if offered and not exists in configuration.
-
-
-
Field Detail
-
PATH_SEPARATOR
static final ConfigurationOption<java.lang.Character> PATH_SEPARATOR
The configuration path separator.
-
SET_DEFAULTS
static final ConfigurationOption<java.lang.Boolean> SET_DEFAULTS
Whether to set and save default values if offered and not exists in configuration.
-
LOAD_SUB_CLASSES
static final ConfigurationOption<java.lang.Boolean> LOAD_SUB_CLASSES
Whether to load subclasses of configuration class.
-
PRELOAD
static final ConfigurationOption<java.lang.Boolean> PRELOAD
Whether to pre parse the config values, may good to set true if you want to keep the config format.
if true, the values will be parsed whenConfigurationHolder.initialize(Configuration).
if false, the values will be parsed when callingConfigValue.get()
-
-