com.jiuxian.mossrose.util.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mossrose Show documentation
Show all versions of mossrose Show documentation
High-Avaliable Distributed Schedule System
package com.jiuxian.mossrose.util;
import java.io.Serializable;
public class Tuple implements Serializable {
private final F first;
private final S second;
public Tuple(F first, S second) {
this.first = first;
this.second = second;
}
public F getFirst() {
return first;
}
public S getSecond() {
return second;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy