Uses of Class
org.jeasy.rules.api.Rules
-
Packages that use Rules Package Description org.jeasy.rules.api This package contains Easy Rules public API.org.jeasy.rules.core This package contains Easy Rules core implementation. -
-
Uses of Rules in org.jeasy.rules.api
Methods in org.jeasy.rules.api with parameters of type Rules Modifier and Type Method Description default void
RulesEngineListener. afterExecute(Rules rules, Facts facts)
Triggered after executing the rule set When this listener is used with aInferenceRulesEngine
, this method will be triggered after the execution of each candidate rule set in each iteration.default void
RulesEngineListener. beforeEvaluate(Rules rules, Facts facts)
Triggered before evaluating the rule set.default Map<Rule,Boolean>
RulesEngine. check(Rules rules, Facts facts)
Check rules without firing them.void
RulesEngine. fire(Rules rules, Facts facts)
Fire all registered rules on given facts. -
Uses of Rules in org.jeasy.rules.core
Methods in org.jeasy.rules.core with parameters of type Rules Modifier and Type Method Description Map<Rule,Boolean>
DefaultRulesEngine. check(Rules rules, Facts facts)
Map<Rule,Boolean>
InferenceRulesEngine. check(Rules rules, Facts facts)
void
DefaultRulesEngine. fire(Rules rules, Facts facts)
void
InferenceRulesEngine. fire(Rules rules, Facts facts)
-