Class YamlConfigurationOptions
YamlConfiguration.-
Method Summary
Modifier and TypeMethodDescriptionReturns theConfigurationthat this object is responsible for.booleanChecks if theConfigurationshould copy values from its defaultConfigurationdirectly.copyDefaults(boolean value) Sets if theConfigurationshould copy values from its defaultConfigurationdirectly.copyHeader(boolean value) Sets whether or not the header should be copied from a default source.Sets the header that will be applied to the top of the saved output.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.charGets the char that will be used to separateConfigurationSections.pathSeparator(char value) Sets the char that will be used to separateConfigurationSections.Methods inherited from class me.confuser.banmanager.common.configuration.file.FileConfigurationOptions
copyHeader, header
-
Method Details
-
configuration
Returns theConfigurationthat this object is responsible for.- Overrides:
configurationin classFileConfigurationOptions- Returns:
- Parent configuration
-
copyDefaults
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(String)will always return the same value asConfigurationSection.isSet(String). The default value is false.- Overrides:
copyDefaultsin classFileConfigurationOptions- Parameters:
value- Whether or not defaults are directly copied- Returns:
- This object, for chaining
-
pathSeparator
Sets the char that will be used to separateConfigurationSections.This value does not affect how the
Configurationis stored, only in how you access the data. The default value is '.'.- Overrides:
pathSeparatorin classFileConfigurationOptions- Parameters:
value- Path separator- Returns:
- This object, for chaining
-
header
Description copied from class: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.nullis a valid value which will indicate that no header is to be applied.- Overrides:
headerin classFileConfigurationOptions- Parameters:
value- New header- Returns:
- This object, for chaining
-
copyHeader
Description copied from class:FileConfigurationOptionsSets whether or not the header should be copied from a default source.If this is true, if a default
FileConfigurationis passed toMemoryConfiguration.setDefaults(Configuration)then upon saving it will use the header from that config, instead of the one provided here.If no default is set on the configuration, or the default is not of type FileConfiguration, or that config has no header (
FileConfigurationOptions.header()returns null) then the header specified in this configuration will be used.Defaults to true.
- Overrides:
copyHeaderin classFileConfigurationOptions- Parameters:
value- Whether or not to copy the header- Returns:
- This object, for chaining
-
indent
public 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.
- Returns:
- How much to indent by
-
indent
Sets how much spaces should be used to indent each line.The minimum value this may be is 2, and the maximum is 9.
- Parameters:
value- New indent- Returns:
- This object, for chaining
-
pathSeparator
public char pathSeparator()Gets the char that will be used to separateConfigurationSections.This value does not affect how the
Configurationis stored, only in how you access the data. The default value is '.'.- Returns:
- Path separator
-
copyDefaults
public 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(String)will always return the same value asConfigurationSection.isSet(String). The default value is false.- Returns:
- Whether or not defaults are directly copied
-