Package org.apache.commons.validator
Class ValidatorResult.ResultStatus
java.lang.Object
org.apache.commons.validator.ValidatorResult.ResultStatus
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ValidatorResult
Contains the status of the validation.
- See Also:
-
Constructor Summary
ConstructorDescriptionResultStatus
(boolean valid, Object result) Constructs a Result status.ResultStatus
(ValidatorResult ignored, boolean valid, Object result) Deprecated. -
Method Summary
-
Constructor Details
-
ResultStatus
Constructs a Result status.- Parameters:
valid
- Whether the validator passed or failed.result
- Value returned by the validator.
-
ResultStatus
Deprecated.UseResultStatus(boolean, Object)
insteadProvided for backwards binary compatibility only.- Parameters:
ignored
- ignored by this methodvalid
- Whether the validator passed or failed.result
- Value returned by the validator.
-
-
Method Details
-
getResult
Gets the result returned by a validation method. This can be used to retrieve to the correctly typed value of a date validation for example.- Returns:
- The value returned by the validation.
-
isValid
Tests whether or not the validation passed.- Returns:
- true if the result was good.
-
setResult
Sets the result returned by a validation method. This can be used to retrieve to the correctly typed value of a date validation for example.- Parameters:
result
- The value returned by the validation.
-
setValid
Sets whether or not the validation passed.- Parameters:
valid
- Whether the validation passed.
-
ResultStatus(boolean, Object)
instead