com.deliveredtechnologies.rulebook.lang.TerminatingRuleBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulebook-core Show documentation
Show all versions of rulebook-core Show documentation
A simple and intuitive rules abstraction for Java
package com.deliveredtechnologies.rulebook.lang;
import com.deliveredtechnologies.rulebook.model.Rule;
/**
* An interface for building Rule objects.
*/
public interface TerminatingRuleBuilder {
/**
* Builds a Rule object.
* @return a Rule object
*/
Rule build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy