Memory Configuration
It's a map that is nice. Essentially a configuration file that doesn't exist.
Create
ConfigurationSection section = new MemoryConfigurationSection();
Read
key: "Value"
String string = section.getString("key");
There are many methods for almost all types.
Write
section.set("key", "value");
Last updated