类 YamlConfigurationOptions
YamlConfiguration- 
构造器概要构造器
- 
方法概要修饰符和类型方法说明返回关联这个配置的Configuration.copyDefaults(boolean value) 如果这个Configuration从 它的默认Configuration那里直接 复制值, 就设为true.copyHeader(boolean value) 已过时。已过时。intindent()Gets how much spaces should be used to indent each line.indent(int value) Sets how much spaces should be used to indent each line.parseComments(boolean value) Sets whether or not comments should be loaded and saved.pathSeparator(char value) 设置用于分离ConfigurationSection中路径的 char.Sets the footer that will be applied to the bottom of the saved output.Sets the header that will be applied to the top of the saved output.intwidth()Gets how long a line can be, before it gets split.width(int value) Sets how long a line can be, before it gets split.从类继承的方法 org.bukkit.configuration.file.FileConfigurationOptionscopyHeader, getFooter, getHeader, header, parseComments从类继承的方法 org.bukkit.configuration.ConfigurationOptionscopyDefaults, pathSeparator
- 
构造器详细资料- 
YamlConfigurationOptions
 
- 
- 
方法详细资料- 
configuration从类复制的说明:ConfigurationOptions返回关联这个配置的Configuration.原文: Returns the Configurationthat this object is responsible for.- 覆盖:
- configuration在类中- FileConfigurationOptions
- 返回:
- Parent configuration
 
- 
copyDefaults从类复制的说明:ConfigurationOptions如果这个Configuration从 它的默认Configuration那里直接 复制值, 就设为true.如果值为 true, 将直接从默认源中复制所有的值. 机器翻译(使得不可能分别设置,默认情况下所提供的值的值和区分。?). 其结果 ConfigurationSection.contains(java.lang.String), 将始终返回相同的值ConfigurationSection.isSet(java.lang.String).默认值是false. 原文: Sets if the Configurationshould copy values from its defaultConfigurationdirectly.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在类中- FileConfigurationOptions
- 参数:
- value- Whether or not defaults are directly copied
- 返回:
- 返回 this
 
- 
pathSeparator从类复制的说明:ConfigurationOptions设置用于分离ConfigurationSection中路径的 char.这个 char 并不会影响数据的储存, 它只是路径的分隔符. 只会影响你在程序中怎样读取数据.默认为 '.'. 原文: Sets the char that will be used to separate ConfigurationSections.This value does not affect how the Configurationis stored, only in how you access the data. The default value is '.'.- 覆盖:
- pathSeparator在类中- FileConfigurationOptions
- 参数:
- value- Path 路径分割符.
- 返回:
- 返回 this .
 
- 
setHeader从类复制的说明:FileConfigurationOptionsSets the header that will be applied to the top of the saved output.This header will be commented out and applied directly at the top of the generated output of the FileConfiguration. It is not required to include a newline at the end of the header as it will automatically be applied, but you may include one if you wish for extra spacing.If no comments exist, an empty list will be returned. A null entry represents an empty line and an empty String represents an empty comment line. - 覆盖:
- setHeader在类中- FileConfigurationOptions
- 参数:
- value- New header, every entry represents one line.
- 返回:
- This object, for chaining
 
- 
header@NotNull @Deprecated(since="1.18.1") public @NotNull YamlConfigurationOptions header(@Nullable @Nullable String value) 已过时。- 覆盖:
- header在类中- FileConfigurationOptions
- 参数:
- value- The string header.
- 返回:
- This object, for chaining.
 
- 
parseComments从类复制的说明:FileConfigurationOptionsSets whether or not comments should be loaded and saved.Defaults to true. - 覆盖:
- parseComments在类中- FileConfigurationOptions
- 参数:
- value- Whether or not comments are parsed.
- 返回:
- This object, for chaining
 
- 
copyHeader@NotNull @Deprecated(since="1.18.1") public @NotNull YamlConfigurationOptions copyHeader(boolean value) 已过时。- 覆盖:
- copyHeader在类中- FileConfigurationOptions
- 参数:
- value- Should comments be parsed.
- 返回:
- This object, for chaining
 
- 
indentpublic int indent()Gets how much spaces should be used to indent each line.The minimum value this may be is 2, and the maximum is 9. - 返回:
- How much to indent by
 
- 
indentSets how much spaces should be used to indent each line.The minimum value this may be is 2, and the maximum is 9. - 参数:
- value- New indent
- 返回:
- This object, for chaining
 
- 
widthpublic int width()Gets how long a line can be, before it gets split.- 返回:
- How the max line width
 
- 
widthSets how long a line can be, before it gets split.- 参数:
- value- New width
- 返回:
- This object, for chaining
 
 
-