Interface RuleBuilder<T>
-
public interface RuleBuilder<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRuleBuilder.Extended<T>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rule<T>otherwiseReport(String message, Object... formatArguments)
-
-
-
Method Detail
-
otherwiseReport
Rule<T> otherwiseReport(String message, Object... formatArguments)
- Parameters:
message- the message you wish to add to the pipe in case of a failed validation.formatArguments- the extra arguments you wish to place on the standardized format '%s' placeholders.- Returns:
- the finished Rule, ready to validate.
-
-