com.livae.util.Triple Maven / Gradle / Ivy
package com.livae.util;
public class Triple {
public final FIRST first;
public final SECOND second;
public final THIRD third;
public Triple(FIRST first, SECOND second, THIRD third) {
this.first = first;
this.second = second;
this.third = third;
}
}