Class YamlConfigurationLoader
java.lang.Object
org.spongepowered.configurate.loader.AbstractConfigurationLoader<CommentedConfigurationNode>
org.spongepowered.configurate.yaml.YamlConfigurationLoader
- All Implemented Interfaces:
ConfigurationNodeFactory<CommentedConfigurationNode>,ConfigurationLoader<CommentedConfigurationNode>
public final class YamlConfigurationLoader
extends AbstractConfigurationLoader<CommentedConfigurationNode>
A loader for YAML-formatted configurations, using the SnakeYAML library for
parsing and generation.
- Since:
- 4.0.0
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.spongepowered.configurate.loader.AbstractConfigurationLoader
CONFIGURATE_LINE_PATTERN, CONFIGURATE_LINE_SEPARATOR, sink, source, SYSTEM_LINE_SEPARATOR -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a newYamlConfigurationLoaderbuilder.createNode(ConfigurationOptions options) Create an empty node with the provided options.protected voidloadInternal(CommentedConfigurationNode node, BufferedReader reader) Using a created node, attempt to read a configuration file.protected voidsaveInternal(ConfigurationNode node, Writer writer) Perform a save of the node to the provided writer.Methods inherited from class org.spongepowered.configurate.loader.AbstractConfigurationLoader
canLoad, canSave, checkCanWrite, defaultCommentHandler, defaultOptions, load, loadToReference, save, writeHeaderInternalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.spongepowered.configurate.loader.ConfigurationLoader
loadMethods inherited from interface org.spongepowered.configurate.ConfigurationNodeFactory
createNode, createNode, createNode, toListCollector, toListCollector, toMapCollector, toMapCollector
-
Method Details
-
builder
Creates a newYamlConfigurationLoaderbuilder.- Returns:
- a new builder
- Since:
- 4.0.0
-
loadInternal
Description copied from class:AbstractConfigurationLoaderUsing a created node, attempt to read a configuration file.The header will already have been read if applicable.
- Specified by:
loadInternalin classAbstractConfigurationLoader<CommentedConfigurationNode>- Parameters:
node- node to load intoreader- reader to load from
-
saveInternal
Description copied from class:AbstractConfigurationLoaderPerform a save of the node to the provided writer.- Specified by:
saveInternalin classAbstractConfigurationLoader<CommentedConfigurationNode>- Parameters:
node- node to savewriter- writer to output to
-
createNode
Description copied from interface:ConfigurationNodeFactoryCreate an empty node with the provided options.Node options may be overridden if the factory enforces specific requirements on options.
- Parameters:
options- node options- Returns:
- newly created empty node
-