Main interface is ConfigurationSection All configs implements it
There is also two loaders
JsonConfigurationfor jsonYamlConfigurationfor yaml
public void loadConfig(String validJson){
JsonConfiguration jsonConfig = JsonConfiguration.loadConfiguration(validJson);
//valid json is valid yaml
YamlConfiguration yamlConfig = YamlConfiguration.loadConfiguration(validJson);
}
There is detailed documentation for main classes and simple named methods, so it would not be hard
There is only one really important point
createConfigurationSection()now not return section if it exists. This section will be ERASED and new created section will be returned, so be carefullygetOrCreateSection()method will work as oldcreateConfigurationSection()method