All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jpower.core.Condition Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package jpower.core;

/**
 * Represents any true/false statement
 */
public interface Condition
{

    public boolean check();

    public default boolean inverted()
    {
        return !check();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy