Package ninja.leaping.configurate.json
Class JSONConfigurationLoader
java.lang.Object
ninja.leaping.configurate.loader.AbstractConfigurationLoader<ConfigurationNode>
ninja.leaping.configurate.json.JSONConfigurationLoader
- All Implemented Interfaces:
ConfigurationLoader<ConfigurationNode>
public class JSONConfigurationLoader extends AbstractConfigurationLoader<ConfigurationNode>
A loader for JSON-formatted configurations, using the jackson library for parsing and generation.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JSONConfigurationLoader.Builder
Builds aJSONConfigurationLoader
. -
Field Summary
Fields inherited from class ninja.leaping.configurate.loader.AbstractConfigurationLoader
CONFIGURATE_LINE_SEPARATOR, LINE_SPLITTER, sink, source, SYSTEM_LINE_SEPARATOR
-
Method Summary
Modifier and Type Method Description static @NonNull JSONConfigurationLoader.Builder
builder()
Creates a newJSONConfigurationLoader
builder.@NonNull CommentedConfigurationNode
createEmptyNode(@NonNull ConfigurationOptions options)
Return an empty node of the most appropriate type for this loaderprotected void
loadInternal(ConfigurationNode node, BufferedReader reader)
void
saveInternal(ConfigurationNode node, Writer writer)
Methods inherited from class ninja.leaping.configurate.loader.AbstractConfigurationLoader
canLoad, canSave, getDefaultCommentHandler, getDefaultOptions, load, save, writeHeaderInternal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface ninja.leaping.configurate.loader.ConfigurationLoader
createEmptyNode, load, loadToReference
-
Method Details
-
builder
Creates a newJSONConfigurationLoader
builder.- Returns:
- A new builder
-
loadInternal
- Specified by:
loadInternal
in classAbstractConfigurationLoader<ConfigurationNode>
- Throws:
IOException
-
saveInternal
- Specified by:
saveInternal
in classAbstractConfigurationLoader<ConfigurationNode>
- Throws:
IOException
-
createEmptyNode
Description copied from interface:ConfigurationLoader
Return an empty node of the most appropriate type for this loader- Parameters:
options
- The options to use with this node. Must not be null (seeConfigurationOptions.defaults()
)- Returns:
- The appropriate node type
-