ConfigLib icon

ConfigLib -----

A Minecraft library for saving, loading, updating, and commenting YAML configuration files



Added FieldFilter
If your configuration has a lot of fields and you want to exclude some of these fields without making them final, static or transient, you can configure your properties object to use additional FieldFilters.

A FieldFilter filters the fields of a configuration class by a specified criterion. For example, if you only want to include fields whose names don't start with ignore, you would add the following filter:

Code (Text):
YamlProperties properties = YamlProperties.builder()
                    .addFilter(field -> !field.getName().startsWith("ignore"))
                    // ...
                    .build();
----------, Aug 25, 2018
Resource Information
Author:
----------
Total Downloads: 1,549
First Release: Aug 9, 2018
Last Update: Apr 27, 2025
Category: ---------------
All-Time Rating:
3 ratings
Find more info at github.com...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings