Interface IRuleResult
-
- All Known Implementing Classes:
RuleResult
public interface IRuleResult
The result ofIRule
.
-
-
Field Summary
Fields Modifier and Type Field Description static IRuleResult
EMPTY_RESULT
The empty rule result.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<? extends IRuleTarget>
getDisabled()
Returns a set of targets to disable.Set<? extends IRuleTarget>
getHidden()
Returns a set of targets to hide.
-
-
-
Field Detail
-
EMPTY_RESULT
static final IRuleResult EMPTY_RESULT
The empty rule result.
-
-
Method Detail
-
getHidden
Set<? extends IRuleTarget> getHidden()
Returns a set of targets to hide.- Returns:
- a set of targets to hide, never
null
. - See Also:
IRuleTarget
-
getDisabled
Set<? extends IRuleTarget> getDisabled()
Returns a set of targets to disable.- Returns:
- a set of targets to disable, never
null
. - See Also:
IRuleTarget
-
-