public class FieldError extends ObjectError
See the DefaultMessageCodesResolver javadoc for details on
 how a message code list is built for a FieldError.
DefaultMessageCodesResolver, 
Serialized Form| Constructor and Description | 
|---|
FieldError(String objectName,
          String field,
          Object rejectedValue,
          boolean bindingFailure,
          String[] codes,
          Object[] arguments,
          String defaultMessage)
Create a new FieldError instance. 
 | 
FieldError(String objectName,
          String field,
          String defaultMessage)
Create a new FieldError instance. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object other)  | 
String | 
getField()
Return the affected field of the object. 
 | 
Object | 
getRejectedValue()
Return the rejected field value. 
 | 
int | 
hashCode()  | 
boolean | 
isBindingFailure()
Return whether this error represents a binding failure
 (like a type mismatch); otherwise it is a validation failure. 
 | 
String | 
toString()
Default implementation exposes the attributes of this MessageSourceResolvable. 
 | 
getObjectNamegetArguments, getCode, getCodes, getDefaultMessage, resolvableToStringpublic FieldError(String objectName, String field, String defaultMessage)
objectName - the name of the affected objectfield - the affected field of the objectdefaultMessage - the default message to be used to resolve this messagepublic FieldError(String objectName, String field, Object rejectedValue, boolean bindingFailure, String[] codes, Object[] arguments, String defaultMessage)
objectName - the name of the affected objectfield - the affected field of the objectrejectedValue - the rejected field valuebindingFailure - whether this error represents a binding failure
 (like a type mismatch); else, it is a validation failurecodes - the codes to be used to resolve this messagearguments - the array of arguments to be used to resolve this messagedefaultMessage - the default message to be used to resolve this messagepublic String getField()
public Object getRejectedValue()
public boolean isBindingFailure()
public String toString()
DefaultMessageSourceResolvableresolvableToString().toString in class ObjectErrorDefaultMessageSourceResolvable.resolvableToString()public boolean equals(Object other)
equals in class ObjectErrorpublic int hashCode()
hashCode in class ObjectError