package org.hivedb.util.functional; public abstract class Ternary<I1, I2, I3, R> { public abstract R f(I1 item1, I2 item2, I3 item3); }