Package org.bukkit.configuration
Class MemoryConfigurationOptions
- java.lang.Object
-
- org.bukkit.configuration.ConfigurationOptions
-
- org.bukkit.configuration.MemoryConfigurationOptions
-
- Direct Known Subclasses:
FileConfigurationOptions
public class MemoryConfigurationOptions extends ConfigurationOptions
Various settings for controlling the input and output of aMemoryConfiguration
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
MemoryConfigurationOptions(MemoryConfiguration configuration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MemoryConfiguration
configuration()
Returns theConfiguration
that this object is responsible for.MemoryConfigurationOptions
copyDefaults(boolean value)
Sets if theConfiguration
should copy values from its defaultConfiguration
directly.MemoryConfigurationOptions
pathSeparator(char value)
Sets the char that will be used to separateConfigurationSection
s-
Methods inherited from class org.bukkit.configuration.ConfigurationOptions
copyDefaults, pathSeparator
-
-
-
-
Constructor Detail
-
MemoryConfigurationOptions
protected MemoryConfigurationOptions(@NotNull MemoryConfiguration configuration)
-
-
Method Detail
-
configuration
@NotNull public MemoryConfiguration configuration()
Description copied from class:ConfigurationOptions
Returns theConfiguration
that this object is responsible for.- Overrides:
configuration
in classConfigurationOptions
- Returns:
- Parent configuration
-
copyDefaults
@NotNull public MemoryConfigurationOptions copyDefaults(boolean value)
Description copied from class:ConfigurationOptions
Sets if theConfiguration
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.- Overrides:
copyDefaults
in classConfigurationOptions
- Parameters:
value
- Whether or not defaults are directly copied- Returns:
- This object, for chaining
-
pathSeparator
@NotNull public MemoryConfigurationOptions pathSeparator(char value)
Description copied from class:ConfigurationOptions
Sets the char that will be used to separateConfigurationSection
sThis value does not affect how the
Configuration
is stored, only in how you access the data. The default value is '.'.- Overrides:
pathSeparator
in classConfigurationOptions
- Parameters:
value
- Path separator- Returns:
- This object, for chaining
-
-