| 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  | FieldErrorEncapsulates a field error, that is, a reason for rejecting a specific
 field value. | 
| Modifier and Type | Method and Description | 
|---|---|
| ObjectError | AbstractBindingResult. getGlobalError() | 
| ObjectError | BindException. getGlobalError() | 
| ObjectError | AbstractErrors. getGlobalError() | 
| ObjectError | Errors. getGlobalError()Get the first global error, if any. | 
| Modifier and Type | Method and Description | 
|---|---|
| List<ObjectError> | AbstractBindingResult. getAllErrors() | 
| List<ObjectError> | BindException. getAllErrors() | 
| List<ObjectError> | AbstractErrors. getAllErrors() | 
| List<ObjectError> | Errors. getAllErrors()Get all errors, both global and field ones. | 
| List<ObjectError> | AbstractBindingResult. getGlobalErrors() | 
| List<ObjectError> | BindException. getGlobalErrors() | 
| List<ObjectError> | Errors. getGlobalErrors()Get all global errors. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AbstractBindingResult. addError(ObjectError error) | 
| void | BindException. addError(ObjectError error) | 
| void | BindingResult. addError(ObjectError error)Add a custom  ObjectErrororFieldErrorto 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) |