Interface Condition

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface Condition
    This interface represents a rule's condition.
    Author:
    Mahmoud Ben Hassine ([email protected])
    • Method Detail

      • evaluate

        boolean evaluate​(Facts facts)
        Evaluate the condition according to the known facts.
        Parameters:
        facts - known when evaluating the rule.
        Returns:
        true if the rule should be triggered, false otherwise