com.kenshoo.pl.entity.internal.Triptionals Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence-layer Show documentation
Show all versions of persistence-layer Show documentation
A Java persistence layer based on JOOQ for high performance and business flow support.
package com.kenshoo.pl.entity.internal;
import com.kenshoo.pl.entity.Triptional;
import java.util.Arrays;
import java.util.function.Supplier;
import static org.jooq.lambda.Seq.seq;
public final class Triptionals {
@SafeVarargs
public static Triptional firstPresent(final Supplier>... suppliers) {
return seq(Arrays.stream(suppliers))
.map(Supplier::get)
.findFirst(Triptional::isPresent)
.orElse(Triptional.absent());
}
private Triptionals() {
// singleton
}
}