package utils; public final class VSTupel { private A a; private B b; private C c; public VSTupel(A a, B b, C c) { this.a = a; this.b = b; this.c = c; } public A getA() { return a; } public B getB() { return b; } public C getC() { return c; } }