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

io.github.pleuvoir.sql.kit.DataModel Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.github.pleuvoir.sql.kit;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import lombok.Data;

@Data
public class DataModel implements DataModelHelper {

	private Map dataModel = new ConcurrentHashMap<>();

	public DataModel addData(String key, Object value) {
		dataModel.put(key, value);
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy