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

org.slf4j.event.KeyValuePair Maven / Gradle / Ivy

There is a newer version: 2.1.0-alpha1
Show newest version
package org.slf4j.event;

public class KeyValuePair {

	public final String key;
	public final Object value;
	
	
	public KeyValuePair(String key, Object value) {
		this.key = key;
		this.value = value;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy