![JAR search and dependency download from the Maven repository](/logo.png)
com.viaoa.util.Tuple3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa-core Show documentation
Show all versions of oa-core Show documentation
Object Automation library
The newest version!
package com.viaoa.util;
public class Tuple3 {
public final A a;
public final B b;
public final C c;
public Tuple3(A a, B b, C c) {
this.a = a;
this.b = b;
this.c = c;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy