Class RequiredError
java.lang.Object
org.springframework.binding.mapping.results.AbstractMappingResult
org.springframework.binding.mapping.results.RequiredError
- All Implemented Interfaces:
Serializable
,MappingResult
The "required" error result--indicates a required mapping could not be performed because the source value to map was
empty.
- Author:
- Keith Donald
- See Also:
-
Constructor Summary
ConstructorDescriptionRequiredError
(Mapping mapping, Object originalValue) Creates a new required error result -
Method Summary
Modifier and TypeMethodDescriptiongetCode()
The mapping result code; for example, "success" , "typeMismatch", "propertyNotFound", or "evaluationException".Get the cause of the error resultThe actual value that was mapped to the target object.The original value of the source object that was to be mapped.boolean
isError()
Indicates if this result is an error result.Methods inherited from class org.springframework.binding.mapping.results.AbstractMappingResult
getMapping, toString
-
Constructor Details
-
RequiredError
Creates a new required error result- Parameters:
originalValue
- the original source value (empty)
-
-
Method Details
-
getCode
Description copied from interface:MappingResult
The mapping result code; for example, "success" , "typeMismatch", "propertyNotFound", or "evaluationException".- Specified by:
getCode
in interfaceMappingResult
- Specified by:
getCode
in classAbstractMappingResult
-
isError
public boolean isError()Description copied from interface:MappingResult
Indicates if this result is an error result.- Specified by:
isError
in interfaceMappingResult
- Specified by:
isError
in classAbstractMappingResult
-
getErrorCause
Description copied from interface:MappingResult
Get the cause of the error result- Specified by:
getErrorCause
in interfaceMappingResult
- Specified by:
getErrorCause
in classAbstractMappingResult
- Returns:
- the underyling cause, or null if this is not an error or there was no root cause.
-
getOriginalValue
Description copied from interface:MappingResult
The original value of the source object that was to be mapped. May be null if this result is an error on the source object.- Specified by:
getOriginalValue
in interfaceMappingResult
- Specified by:
getOriginalValue
in classAbstractMappingResult
-
getMappedValue
Description copied from interface:MappingResult
The actual value that was mapped to the target object. Null if this result is an error.- Specified by:
getMappedValue
in interfaceMappingResult
- Specified by:
getMappedValue
in classAbstractMappingResult
-