How to understand the not expression?

rule "not rule test"
    when

        not Cheese( price == 5 )
    then
                list.add( new Integer( 5 ) );
end


Does it means that for each Cheese(price != 5), then fire the rule, or if
there not exists Cheese(price == 5) then fire the rule?


>

Reply via email to