
com.github.avinandi.urlparser.KeyValuePair Maven / Gradle / Ivy
package com.github.avinandi.urlparser;
import java.io.Serializable;
public class KeyValuePair implements Serializable {
private final String key;
private final Object value;
KeyValuePair(String key, Object value) {
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public T getValue() {
return (T) value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy