Interface IRuleResult
- 
- All Known Implementing Classes:
- RuleResult
 
 public interface IRuleResultThe result ofIRule.
- 
- 
Field SummaryFields Modifier and Type Field Description static IRuleResultEMPTY_RESULTThe empty rule result.
 - 
Method SummaryAll 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_RESULTstatic final IRuleResult EMPTY_RESULT The empty rule result.
 
- 
 - 
Method Detail- 
getHiddenSet<? extends IRuleTarget> getHidden() Returns a set of targets to hide.- Returns:
- a set of targets to hide, never null.
- See Also:
- IRuleTarget
 
 - 
getDisabledSet<? extends IRuleTarget> getDisabled() Returns a set of targets to disable.- Returns:
- a set of targets to disable, never null.
- See Also:
- IRuleTarget
 
 
- 
 
-