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

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

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;
    }

    @Override
    public String toString() {
        return String.valueOf(key) + "=\"" + String.valueOf(value) +"\"";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy