Package com.vaadin.data
Class ValidationResult.SimpleValidationResult
- java.lang.Object
-
- com.vaadin.data.ValidationResult.SimpleValidationResult
-
- All Implemented Interfaces:
ValidationResult
,Serializable
- Enclosing interface:
- ValidationResult
public static class ValidationResult.SimpleValidationResult extends Object implements ValidationResult
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.data.ValidationResult
ValidationResult.SimpleValidationResult
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<ErrorLevel>
getErrorLevel()
Returns optional error level for this validation result.String
getErrorMessage()
Returns the result message.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.data.ValidationResult
isError
-
-
-
-
Method Detail
-
getErrorMessage
public String getErrorMessage()
Description copied from interface:ValidationResult
Returns the result message.Throws an
IllegalStateException
if the result represents success.- Specified by:
getErrorMessage
in interfaceValidationResult
- Returns:
- the error message
-
getErrorLevel
public Optional<ErrorLevel> getErrorLevel()
Description copied from interface:ValidationResult
Returns optional error level for this validation result. Error level is not present for successful validation results.Note: By default
ErrorLevel.INFO
andErrorLevel.WARNING
are not considered to be blocking the validation and conversion chain.- Specified by:
getErrorLevel
in interfaceValidationResult
- Returns:
- optional error level; error level is present for validation results that have not passed validation
- See Also:
ValidationResult.isError()
-
-