EpicEnchants/src/main/java/com/songoda/epicenchants/utils/Tuple.java
2019-08-04 17:49:57 -04:00

24 lines
412 B
Java

package com.songoda.epicenchants.utils;
public class Tuple<key, value> {
private key x;
private value y;
public Tuple(key x, value y) {
this.x = x;
this.y = y;
}
public key getLeft() {
return this.x;
}
public value getRight() {
return this.y;
}
public static <key, value> Tuple of(key x, value y) {
return new Tuple(x, y);
}
}