Interface StandardOptions
public interface StandardOptions
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ConfigurationOption
<Boolean> Whether to load subclasses of configuration class.static final ConfigurationOption
<Character> The configuration path separator.static final ConfigurationOption
<Boolean> Whether to pre parse the config values, may good to set true if you want to keep the config format.static final ConfigurationOption
<Boolean> Whether to set and save default values if offered and not exists in configuration.
-
Field Details
-
PATH_SEPARATOR
The configuration path separator. -
SET_DEFAULTS
Whether to set and save default values if offered and not exists in configuration. -
LOAD_SUB_CLASSES
Whether to load subclasses of configuration class. -
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()
-