![JAR search and dependency download from the Maven repository](/logo.png)
com.github.ltsopensource.core.domain.Pair Maven / Gradle / Ivy
package com.github.ltsopensource.core.domain;
/**
* @author Robert HG ([email protected]) on 3/6/15.
*/
public class Pair {
private Key key;
private Value value;
public Pair(Key key, Value value) {
this.key = key;
this.value = value;
}
public Key getKey() {
return key;
}
public void setKey(Key key) {
this.key = key;
}
public Value getValue() {
return value;
}
public void setValue(Value value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy