com.github.httpmock.util.KeyValuePair Maven / Gradle / Ivy
package com.github.httpmock.util;
public class KeyValuePair {
private T1 key;
private T2 value;
public KeyValuePair(T1 key, T2 value) {
this.key = key;
this.value = value;
}
public T1 getKey() {
return key;
}
public T2 getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy