com.g2forge.alexandria.java.fluent.IFluent_0 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.fluent;
import java.util.function.Supplier;
/**
* "0" indicates that the arity of this fluent holder can be 0.
*/
public interface IFluent_0 extends IFluent__ {
public T or(T other);
public T orGet(Supplier extends T> other);
public T orThrow(Supplier extends X> exception) throws X;
}