接口 StandardOptions
public interface StandardOptions
-
字段概要
字段修饰符和类型字段说明static 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.
-
字段详细资料
-
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()
-