com.volcengine.ark.runtime.utils.Pair Maven / Gradle / Ivy
package com.volcengine.ark.runtime.utils;
public class Pair {
private X name;
private Y value;
public Pair(X name, Y value) {
this.setName(name);
this.setValue(value);
}
private void setName(X name) {
this.name = name;
}
private void setValue(Y value) {
this.value = value;
}
public X getName() {
return this.name;
}
public Y getValue() {
return this.value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy