public class Validator.Result
extends java.lang.Object
Result is returned from a Validator's
validate method to indicate an invalid value.
A Result can contain an error code and/or description.
These values are for your own reporting purposes and are not used
internally.
| Constructor | Description |
|---|---|
Result(java.lang.Object errorCode,
java.lang.String description) |
Creates a
Result with the given error code and description. |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getDescription() |
Returns a description of the validation result, which may be
null. |
java.lang.Object |
getErrorCode() |
Returns the error code for the result, which may be
null. |
java.lang.String |
toString() |
Returns a string representation of the
Result. |
public Result(java.lang.Object errorCode,
java.lang.String description)
Result with the given error code and description.errorCode - an error code for this Result, may be nulldescription - a textual description of the Result, may be nullpublic java.lang.Object getErrorCode()
null.public java.lang.String getDescription()
null.public java.lang.String toString()
Result. This
method is intended to be used for debugging purposes only, and
the content and format of the returned string may vary between
implementations. The returned string may be empty but may not
be null.toString in class java.lang.ObjectResult