类 MemoryConfigurationOptions
- 直接已知子类:
FileConfigurationOptions
MemoryConfiguration
-
构造器概要
-
方法概要
修饰符和类型方法说明返回关联这个配置的Configuration
.copyDefaults
(boolean value) 如果这个Configuration
从 它的默认Configuration
那里直接 复制值, 就设为true.pathSeparator
(char value) 设置用于分离ConfigurationSection
中路径的 char.从类继承的方法 org.bukkit.configuration.ConfigurationOptions
copyDefaults, pathSeparator
-
构造器详细资料
-
MemoryConfigurationOptions
-
-
方法详细资料
-
configuration
从类复制的说明:ConfigurationOptions
返回关联这个配置的Configuration
.原文: Returns the
Configuration
that this object is responsible for.- 覆盖:
configuration
在类中ConfigurationOptions
- 返回:
- Parent configuration
-
copyDefaults
从类复制的说明:ConfigurationOptions
如果这个Configuration
从 它的默认Configuration
那里直接 复制值, 就设为true.如果值为 true, 将直接从默认源中复制所有的值.
机器翻译(使得不可能分别设置,默认情况下所提供的值的值和区分。?). 其结果
ConfigurationSection.contains(java.lang.String)
, 将始终返回相同的值ConfigurationSection.isSet(java.lang.String)
.默认值是false.
原文: Sets if the
Configuration
should copy values from its defaultConfiguration
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 asConfigurationSection.isSet(java.lang.String)
. The default value is false.- 覆盖:
copyDefaults
在类中ConfigurationOptions
- 参数:
value
- Whether or not defaults are directly copied- 返回:
- 返回 this
-
pathSeparator
从类复制的说明:ConfigurationOptions
设置用于分离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 '.'.- 覆盖:
pathSeparator
在类中ConfigurationOptions
- 参数:
value
- Path 路径分割符.- 返回:
- 返回 this .
-