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
Minion is a handy group-key-value data storage library, powered by INI format. Let you parse and store INI format. Designed with modern fluent interface.
Add dependency
Step 1. Add the JitPack repository to your build file
Minion allows to remove whole group of records too. FunctionremoveGroup will return removed group with removed records. If it doesn't exist, method will returnnull.
IniGroupgroup =minion.removeGroup("music");
Clear all
If you need to remove all groups (and, also, all records), you can call methodclear:
minion.clear();
How it works
Minion based on stupidly simple plain-text INI format, it parses, compiles and deliver access blazingly fast.Library is extra-lightweight (~25Kb) and contain no any dependencies.You can use Minion to store some prefs or form-specific data. Simply than ever.
License
Copyright 2021 Igor SolkinLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
About
🔥 Minion is a handy group-key-value data storage library, powered by INI format