All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ferus.util.config.transformer.Transformers Maven / Gradle / Ivy

Go to download

ConfigKeys is a simple wrapper for zml's Configurate, providing a more stream-lined way to access configuration on-the-fly.

The newest version!
package tech.ferus.util.config.transformer;

/**
 * Contains a bunch of basic transformers.
 */
public final class Transformers {

    // Basic List Transformers
    public static final ListTransformer STRING_LIST = new ListTransformer<>();
    public static final ListTransformer BOOLEAN_LIST = new ListTransformer<>();
    public static final ListTransformer INTEGER_LIST = new ListTransformer<>();
    public static final ListTransformer FLOAT_LIST = new ListTransformer<>();
    public static final ListTransformer DOUBLE_LIST = new ListTransformer<>();
    public static final ListTransformer LONG_LIST = new ListTransformer<>();

    // Basic Set Transformers
    public static final SetTransformer STRING_SET = new SetTransformer<>();
    public static final SetTransformer BOOLEAN_SET = new SetTransformer<>();
    public static final SetTransformer INTEGER_SET = new SetTransformer<>();
    public static final SetTransformer FLOAT_SET = new SetTransformer<>();
    public static final SetTransformer DOUBLE_SET = new SetTransformer<>();
    public static final SetTransformer LONG_SET = new SetTransformer<>();

    // Basic Map Transformers
    public static final MapTransformer STRING_MAP = new MapTransformer<>();
    public static final MapTransformer BOOLEAN_MAP = new MapTransformer<>();
    public static final MapTransformer INTEGER_MAP = new MapTransformer<>();
    public static final MapTransformer FLOAT_MAP = new MapTransformer<>();
    public static final MapTransformer DOUBLE_MAP = new MapTransformer<>();
    public static final MapTransformer LONG_MAP = new MapTransformer<>();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy