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

com.fastchar.core.FastValues Maven / Gradle / Ivy

package com.fastchar.core;

import java.util.concurrent.ConcurrentHashMap;

public final class FastValues {
    private final ConcurrentHashMap values = new ConcurrentHashMap<>();

    public FastValues put(String key, Object value) {
        if (value == null || key == null) {
            return this;
        }
        values.put(key, value);
        return this;
    }

    public FastValues remove(String key) {
        values.remove(key);
        return this;
    }

    public  T get(String key) {
        return (T) values.get(key);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy