You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
virtualWinter edited this page Aug 31, 2025
·
1 revision
YAML
The storage-yml module provides a simple way to interact with YAML files.
Usage
// Initialize the YAML handlerYmlyml = newYml("config.yml");
yml.load();
// Get the dataMap<String, Object> data = yml.getData();
// ... perform operations with the data// Save the datayml.save();