Class FileConfigurationOptions
- Direct Known Subclasses:
YamlConfigurationOptions
public class FileConfigurationOptions extends MemoryConfigurationOptions
FileConfiguration-
Field Summary
Fields Modifier and Type Field Description private booleancopyHeaderprivate java.lang.Stringheader -
Constructor Summary
Constructors Modifier Constructor Description protectedFileConfigurationOptions(@NotNull MemoryConfiguration configuration) -
Method Summary
Modifier and Type Method Description @NotNull FileConfigurationconfiguration()Returns theConfigurationthat this object is responsible for.@NotNull FileConfigurationOptionscopyDefaults(boolean value)Sets if theConfigurationshould copy values from its defaultConfigurationdirectly.booleancopyHeader()Gets whether or not the header should be copied from a default source.@NotNull FileConfigurationOptionscopyHeader(boolean value)Sets whether or not the header should be copied from a default source.@Nullable java.lang.Stringheader()Gets the header that will be applied to the top of the saved output.@NotNull FileConfigurationOptionsheader(@Nullable java.lang.String value)Sets the header that will be applied to the top of the saved output.@NotNull FileConfigurationOptionspathSeparator(char value)Sets the char that will be used to separateConfigurationSectionsMethods inherited from class org.bukkit.configuration.ConfigurationOptions
copyDefaults, pathSeparatorMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
header
private java.lang.String header -
copyHeader
private boolean copyHeader
-
-
Constructor Details
-
FileConfigurationOptions
-
-
Method Details
-
configuration
Description copied from class:ConfigurationOptionsReturns theConfigurationthat this object is responsible for.- Overrides:
configurationin classMemoryConfigurationOptions- Returns:
- Parent configuration
-
copyDefaults
Description copied from class:ConfigurationOptionsSets 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.- Overrides:
copyDefaultsin classMemoryConfigurationOptions- Parameters:
value- Whether or not defaults are directly copied- Returns:
- This object, for chaining
-
pathSeparator
Description copied from class:ConfigurationOptionsSets 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 '.'.- Overrides:
pathSeparatorin classMemoryConfigurationOptions- Parameters:
value- Path separator- Returns:
- This object, for chaining
-
header
@Nullable public @Nullable java.lang.String header()Gets 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.Null is a valid value which will indicate that no header is to be applied. The default value is null.
- Returns:
- Header
-
header
@NotNull public @NotNull FileConfigurationOptions header(@Nullable @Nullable java.lang.String value)Sets 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.Null is a valid value which will indicate that no header is to be applied.
- Parameters:
value- New header- Returns:
- This object, for chaining
-
copyHeader
public boolean copyHeader()Gets whether or not the header should be copied from a default source.If this is true, if a default
FileConfigurationis passed toMemoryConfiguration.setDefaults(org.bukkit.configuration.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 (
header()returns null) then the header specified in this configuration will be used.Defaults to true.
- Returns:
- Whether or not to copy the header
-
copyHeader
Sets whether or not the header should be copied from a default source.If this is true, if a default
FileConfigurationis passed toMemoryConfiguration.setDefaults(org.bukkit.configuration.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 (
header()returns null) then the header specified in this configuration will be used.Defaults to true.
- Parameters:
value- Whether or not to copy the header- Returns:
- This object, for chaining
-