| Package | Description | 
|---|---|
| org.springframework.validation | 
 Provides data binding and validation functionality,
 for usage in business and/or UI layers. 
 | 
| org.springframework.web.bind | 
 Provides web-specific data binding functionality. 
 | 
| org.springframework.web.bind.support | 
 Support classes for web data binding. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
FieldError
Encapsulates a field error, that is, a reason for rejecting a specific
 field value. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ObjectError | 
BindException.getGlobalError()  | 
ObjectError | 
AbstractBindingResult.getGlobalError()  | 
ObjectError | 
AbstractErrors.getGlobalError()  | 
ObjectError | 
Errors.getGlobalError()
Get the first global error, if any. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<ObjectError> | 
BindException.getAllErrors()  | 
List<ObjectError> | 
AbstractBindingResult.getAllErrors()  | 
List<ObjectError> | 
AbstractErrors.getAllErrors()  | 
List<ObjectError> | 
Errors.getAllErrors()
Get all errors, both global and field ones. 
 | 
List<ObjectError> | 
BindException.getGlobalErrors()  | 
List<ObjectError> | 
AbstractBindingResult.getGlobalErrors()  | 
List<ObjectError> | 
Errors.getGlobalErrors()
Get all global errors. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
BindException.addError(ObjectError error)  | 
void | 
AbstractBindingResult.addError(ObjectError error)  | 
void | 
BindingResult.addError(ObjectError error)
Add a custom  
ObjectError or FieldError to the errors list. | 
| Modifier and Type | Method and Description | 
|---|---|
ObjectError | 
EscapedErrors.getGlobalError()  | 
| Modifier and Type | Method and Description | 
|---|---|
List<ObjectError> | 
EscapedErrors.getAllErrors()  | 
List<ObjectError> | 
EscapedErrors.getGlobalErrors()  | 
| Modifier and Type | Method and Description | 
|---|---|
ObjectError | 
WebExchangeBindException.getGlobalError()  | 
| Modifier and Type | Method and Description | 
|---|---|
List<ObjectError> | 
WebExchangeBindException.getAllErrors()  | 
List<ObjectError> | 
WebExchangeBindException.getGlobalErrors()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
WebExchangeBindException.addError(ObjectError error)  |