boolean |
RuleEvaluationService.allMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches all rules provided.
|
boolean |
SpelRuleEvaluationService.allMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches all rules provided.
|
boolean |
RuleEvaluationService.anyMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches any rule provided.
|
boolean |
SpelRuleEvaluationService.anyMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches any rule provided.
|
boolean |
RuleEvaluationService.evaluateRule(String rule,
Object rootObject,
ExpressionContext expressionContext) |
Uses the configured expression parser to evaluate the rule against the root object.
|
boolean |
SpelRuleEvaluationService.evaluateRule(String rule,
Object rootObject,
ExpressionContext expressionContext) |
Uses the configured expression parser to evaluate the rule against the root object.
|
<T> Iterable<T> |
RuleEvaluationService.findAll(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find all objects matching the rules provided.
|
<T> Iterable<T> |
SpelRuleEvaluationService.findAll(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find all objects matching the rules provided.
|
<T> Optional<T> |
RuleEvaluationService.findAny(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find an object that matches the rules.
|
<T> Optional<T> |
SpelRuleEvaluationService.findAny(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find an object that matches the rules.
|
<T> Iterable<T> |
RuleEvaluationService.findAnyN(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find a subset of all objects matching the rules provided.
|
<T> Iterable<T> |
SpelRuleEvaluationService.findAnyN(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
|
<T> Optional<T> |
RuleEvaluationService.findFirst(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find the first object that matches the rules.
|
<T> Optional<T> |
SpelRuleEvaluationService.findFirst(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find the first object that matches the rules.
|
<T> Iterable<T> |
RuleEvaluationService.findFirstN(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
Use to find a subset of all objects matching the rules provided.
|
<T> Iterable<T> |
SpelRuleEvaluationService.findFirstN(Collection<String> rules,
Collection<T> rootObjects,
ExpressionContext expressionContext) |
|
protected org.springframework.expression.Expression |
SpelRuleEvaluationService.getExpressionFromCache(String rule,
ExpressionContext expressionContext) |
|
protected Optional<org.springframework.expression.ParserContext> |
SpelRuleEvaluationService.getParserContext(ExpressionContext expressionContext) |
|
boolean |
RuleEvaluationService.noneMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches no provided rule.
|
boolean |
SpelRuleEvaluationService.noneMatch(Collection<String> rules,
Object rootObject,
ExpressionContext expressionContext) |
Use to determine if the object matches no provided rule.
|