Rule.Builder |
Rule.Builder.actions(Collection<RuleAction> actions) |
The list of actions to execute when the conditions match the incoming email, and none of the
"unless conditions" match.
|
Rule.Builder |
Rule.Builder.actions(Consumer<RuleAction.Builder>... actions) |
The list of actions to execute when the conditions match the incoming email, and none of the
"unless conditions" match.
|
Rule.Builder |
Rule.Builder.actions(RuleAction... actions) |
The list of actions to execute when the conditions match the incoming email, and none of the
"unless conditions" match.
|
static Rule.Builder |
Rule.builder() |
|
Rule.Builder |
Rule.Builder.conditions(Collection<RuleCondition> conditions) |
The conditions of this rule.
|
Rule.Builder |
Rule.Builder.conditions(Consumer<RuleCondition.Builder>... conditions) |
The conditions of this rule.
|
Rule.Builder |
Rule.Builder.conditions(RuleCondition... conditions) |
The conditions of this rule.
|
Rule.Builder |
Rule.Builder.name(String name) |
The user-friendly name of the rule.
|
Rule.Builder |
Rule.toBuilder() |
|
Rule.Builder |
Rule.Builder.unless(Collection<RuleCondition> unless) |
The "unless conditions" of this rule.
|
Rule.Builder |
Rule.Builder.unless(Consumer<RuleCondition.Builder>... unless) |
The "unless conditions" of this rule.
|
Rule.Builder |
Rule.Builder.unless(RuleCondition... unless) |
The "unless conditions" of this rule.
|