Class FileConfiguration
- All Implemented Interfaces:
Configuration,ConfigurationSection
- Direct Known Subclasses:
YamlConfiguration
public abstract class FileConfiguration extends MemoryConfiguration
Configuration-
Field Summary
Fields inherited from class org.bukkit.configuration.MemoryConfiguration
defaults, optionsFields inherited from class org.bukkit.configuration.MemorySection
map -
Constructor Summary
Constructors Constructor Description FileConfiguration()Creates an emptyFileConfigurationwith no default values.FileConfiguration(@Nullable Configuration defaults)Creates an emptyFileConfigurationusing the specifiedConfigurationas a source for all default values. -
Method Summary
Modifier and Type Method Description protected abstract @NotNull java.lang.StringbuildHeader()Compiles the header for thisFileConfigurationand returns the result.voidload(@NotNull java.io.File file)Loads thisFileConfigurationfrom the specified location.voidload(@NotNull java.io.Reader reader)Loads thisFileConfigurationfrom the specified reader.voidload(@NotNull java.lang.String file)Loads thisFileConfigurationfrom the specified location.abstract voidloadFromString(@NotNull java.lang.String contents)Loads thisFileConfigurationfrom the specified string, as opposed to from file.@NotNull FileConfigurationOptionsoptions()Gets theConfigurationOptionsfor thisConfiguration.voidsave(@NotNull java.io.File file)Saves thisFileConfigurationto the specified location.voidsave(@NotNull java.lang.String file)Saves thisFileConfigurationto the specified location.abstract @NotNull java.lang.StringsaveToString()Saves thisFileConfigurationto a string, and returns it.Methods inherited from class org.bukkit.configuration.MemoryConfiguration
addDefault, addDefaults, addDefaults, getDefaults, getParent, setDefaultsMethods inherited from class org.bukkit.configuration.MemorySection
contains, contains, createPath, createPath, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getConfigurationSection, getCurrentPath, getDefault, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getObject, getObject, getRoot, getSerializable, getSerializable, getShortList, getString, getString, getStringList, getValues, isBoolean, isConfigurationSection, isDouble, isInt, isList, isLong, isPrimitiveWrapper, isSet, isString, mapChildrenKeys, mapChildrenValues, set, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.bukkit.configuration.ConfigurationSection
contains, contains, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getConfigurationSection, getCurrentPath, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getObject, getObject, getRoot, getSerializable, getSerializable, getShortList, getString, getString, getStringList, getValues, isBoolean, isConfigurationSection, isDouble, isInt, isList, isLong, isSet, isString, set
-
Constructor Details
-
FileConfiguration
public FileConfiguration()Creates an emptyFileConfigurationwith no default values. -
FileConfiguration
Creates an emptyFileConfigurationusing the specifiedConfigurationas a source for all default values.- Parameters:
defaults- Default value provider
-
-
Method Details
-
save
public void save(@NotNull @NotNull java.io.File file) throws java.io.IOExceptionSaves thisFileConfigurationto the specified location.If the file does not exist, it will be created. If already exists, it will be overwritten. If it cannot be overwritten or created, an exception will be thrown.
This method will save using the system default encoding, or possibly using UTF8.
- Parameters:
file- File to save to.- Throws:
java.io.IOException- Thrown when the given file cannot be written to for any reason.java.lang.IllegalArgumentException- Thrown when file is null.
-
save
public void save(@NotNull @NotNull java.lang.String file) throws java.io.IOExceptionSaves thisFileConfigurationto the specified location.If the file does not exist, it will be created. If already exists, it will be overwritten. If it cannot be overwritten or created, an exception will be thrown.
This method will save using the system default encoding, or possibly using UTF8.
- Parameters:
file- File to save to.- Throws:
java.io.IOException- Thrown when the given file cannot be written to for any reason.java.lang.IllegalArgumentException- Thrown when file is null.
-
saveToString
@NotNull public abstract @NotNull java.lang.String saveToString()Saves thisFileConfigurationto a string, and returns it.- Returns:
- String containing this configuration.
-
load
public void load(@NotNull @NotNull java.io.File file) throws java.io.FileNotFoundException, java.io.IOException, InvalidConfigurationExceptionLoads thisFileConfigurationfrom the specified location.All the values contained within this configuration will be removed, leaving only settings and defaults, and the new values will be loaded from the given file.
If the file cannot be loaded for any reason, an exception will be thrown.
- Parameters:
file- File to load from.- Throws:
java.io.FileNotFoundException- Thrown when the given file cannot be opened.java.io.IOException- Thrown when the given file cannot be read.InvalidConfigurationException- Thrown when the given file is not a valid Configuration.java.lang.IllegalArgumentException- Thrown when file is null.
-
load
public void load(@NotNull @NotNull java.io.Reader reader) throws java.io.IOException, InvalidConfigurationExceptionLoads thisFileConfigurationfrom the specified reader.All the values contained within this configuration will be removed, leaving only settings and defaults, and the new values will be loaded from the given stream.
- Parameters:
reader- the reader to load from- Throws:
java.io.IOException- thrown when underlying reader throws an IOExceptionInvalidConfigurationException- thrown when the reader does not represent a valid Configurationjava.lang.IllegalArgumentException- thrown when reader is null
-
load
public void load(@NotNull @NotNull java.lang.String file) throws java.io.FileNotFoundException, java.io.IOException, InvalidConfigurationExceptionLoads thisFileConfigurationfrom the specified location.All the values contained within this configuration will be removed, leaving only settings and defaults, and the new values will be loaded from the given file.
If the file cannot be loaded for any reason, an exception will be thrown.
- Parameters:
file- File to load from.- Throws:
java.io.FileNotFoundException- Thrown when the given file cannot be opened.java.io.IOException- Thrown when the given file cannot be read.InvalidConfigurationException- Thrown when the given file is not a valid Configuration.java.lang.IllegalArgumentException- Thrown when file is null.
-
loadFromString
public abstract void loadFromString(@NotNull @NotNull java.lang.String contents) throws InvalidConfigurationExceptionLoads thisFileConfigurationfrom the specified string, as opposed to from file.All the values contained within this configuration will be removed, leaving only settings and defaults, and the new values will be loaded from the given string.
If the string is invalid in any way, an exception will be thrown.
- Parameters:
contents- Contents of a Configuration to load.- Throws:
InvalidConfigurationException- Thrown if the specified string is invalid.java.lang.IllegalArgumentException- Thrown if contents is null.
-
buildHeader
@NotNull protected abstract @NotNull java.lang.String buildHeader()Compiles the header for thisFileConfigurationand returns the result.This will use the header from
options()->FileConfigurationOptions.header(), respecting the rules ofFileConfigurationOptions.copyHeader()if set.- Returns:
- Compiled header
-
options
Description copied from interface:ConfigurationGets theConfigurationOptionsfor thisConfiguration.All setters through this method are chainable.
- Specified by:
optionsin interfaceConfiguration- Overrides:
optionsin classMemoryConfiguration- Returns:
- Options for this configuration
-