jpower.core.Condition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.core;
/**
* Represents any true/false statement
*/
public interface Condition
{
public boolean check();
public default boolean inverted()
{
return !check();
}
}