public class ConfigurationOptions
extends java.lang.Object
Configuration
的配置类.
原文:
Various settings for controlling the input and output of a Configuration
限定符 | 构造器和说明 |
---|---|
protected |
ConfigurationOptions(Configuration configuration) |
限定符和类型 | 方法和说明 |
---|---|
Configuration |
configuration()
返回关联这个配置的
Configuration . |
boolean |
copyDefaults()
检查这个
Configuration 是不是直接从缺省值 Configuration 那里复制过来的. |
ConfigurationOptions |
copyDefaults(boolean value)
如果这个
Configuration 从 它的默认Configuration 那里直接 复制值, 就设为true. |
char |
pathSeparator()
获取用于分离
ConfigurationSection 中路径的 char. |
ConfigurationOptions |
pathSeparator(char value)
设置用于分离
ConfigurationSection 中路径的 char. |
protected ConfigurationOptions(Configuration configuration)
public Configuration configuration()
Configuration
.
原文:
Returns the Configuration
that this object is responsible for.
public char pathSeparator()
ConfigurationSection
中路径的 char.
这个char并不会影响数据的储存, 它只是路径的分隔符. 只会影响你在程序中怎样读取数据.默认为 '.'.
原文:
Gets the char that will be used to separate ConfigurationSection
s
This value does not affect how the Configuration
is stored, only in how you access the data.
The default value is '.'.
public ConfigurationOptions pathSeparator(char value)
ConfigurationSection
中路径的 char.
这个 char 并不会影响数据的储存, 它只是路径的分隔符. 只会影响你在程序中怎样读取数据.默认为 '.'.
原文:
Sets the char that will be used to separate ConfigurationSection
s.
This value does not affect how the Configuration
is stored, only in how you access the data.
The default value is '.'.
value
- Path 路径分割符.public boolean copyDefaults()
Configuration
是不是直接从缺省值 Configuration
那里复制过来的.
如果为真, 表明这个列表中的值都是从缺省值 Configuration
中复制过来的.
这个列表将被锁定. 并始终返回缺省值列表中的值. 可以看作是只读的缺省值列表.
默认值是false.
原文:
Checks if the Configuration
should copy values from its default Configuration
directly.
If this is true, all values in the default Configuration will be directly copied, making it impossible to distinguish between values that were set and values that are provided by default.
As a result, ConfigurationSection.contains(java.lang.String)
will always return the same value as ConfigurationSection.isSet(java.lang.String)
.
The default value is false.
public ConfigurationOptions copyDefaults(boolean value)
Configuration
从 它的默认Configuration
那里直接 复制值, 就设为true.
如果值为 true, 将直接从默认源中复制所有的值.
机器翻译(使得不可能分别设置,默认情况下所提供的值的值和区分。?).
其结果ConfigurationSection.contains(java.lang.String)
, 将始终返回相同的值ConfigurationSection.isSet(java.lang.String)
.
默认值是false.
原文:
Sets if the Configuration
should copy values from its default Configuration
directly.
If this is true, all values in the default Configuration will be directly copied, making it impossible to distinguish between values that were set and values that are provided by default.
As a result, ConfigurationSection.contains(java.lang.String)
will always return the same value as ConfigurationSection.isSet(java.lang.String)
.
The default value is false.
value
- Whether or not defaults are directly copied