
com.eventstore.dbclient.Tuple Maven / Gradle / Ivy
package com.eventstore.dbclient;
public class Tuple {
private final A _1;
private final B _2;
public Tuple(A _1, B _2) {
this._1 = _1;
this._2 = _2;
}
public A get_1() {
return this._1;
}
public B get_2() {
return this._2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy