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

org.ggp.base.util.ruleengine.RuleEngineMove Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package org.ggp.base.util.ruleengine;

public interface RuleEngineMove {
    /**
     * Move types should implement hashCode so they can be put in sets and maps
     * and deduplicated safely.
     */
    @Override
    public int hashCode();
    /**
     * Move types should implement hashCode so they can be put in sets and maps
     * and deduplicated safely.
     */
    @Override
    public boolean equals(Object obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy