Class ConfigurationOptions
- java.lang.Object
- 
- org.bukkit.configuration.ConfigurationOptions
 
- 
- Direct Known Subclasses:
- MemoryConfigurationOptions
 
 public class ConfigurationOptions extends Object Various settings for controlling the input and output of aConfiguration
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedConfigurationOptions(Configuration configuration)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Configurationconfiguration()Returns theConfigurationthat this object is responsible for.booleancopyDefaults()Checks if theConfigurationshould copy values from its defaultConfigurationdirectly.ConfigurationOptionscopyDefaults(boolean value)Sets if theConfigurationshould copy values from its defaultConfigurationdirectly.charpathSeparator()Gets the char that will be used to separateConfigurationSectionsConfigurationOptionspathSeparator(char value)Sets the char that will be used to separateConfigurationSections
 
- 
- 
- 
Constructor Detail- 
ConfigurationOptionsprotected ConfigurationOptions(@NotNull Configuration configuration)
 
- 
 - 
Method Detail- 
configuration@NotNull public Configuration configuration() Returns theConfigurationthat this object is responsible for.- Returns:
- Parent configuration
 
 - 
pathSeparatorpublic char pathSeparator() Gets the char that will be used to separateConfigurationSectionsThis value does not affect how the Configurationis stored, only in how you access the data. The default value is '.'.- Returns:
- Path separator
 
 - 
pathSeparator@NotNull public ConfigurationOptions pathSeparator(char value) Sets the char that will be used to separateConfigurationSectionsThis value does not affect how the Configurationis stored, only in how you access the data. The default value is '.'.- Parameters:
- value- Path separator
- Returns:
- This object, for chaining
 
 - 
copyDefaultspublic boolean copyDefaults() Checks if theConfigurationshould 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.- Returns:
- Whether or not defaults are directly copied
 
 - 
copyDefaults@NotNull public ConfigurationOptions copyDefaults(boolean value) Sets if theConfigurationshould 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.- Parameters:
- value- Whether or not defaults are directly copied
- Returns:
- This object, for chaining
 
 
- 
 
-