Package org.thymeleaf.spring5.context
Interface IThymeleafBindStatus
public interface IThymeleafBindStatus
This interface is meant to abstract a Spring BindStatus
, without the client code
needing to know if it is a Spring WebMVC or Spring WebFlux implementation of this
BindStatus
.
- Since:
- 3.0.3
- Author:
- Daniel Fernández
-
Method Summary
Modifier and TypeMethodDescriptionfindEditor
(Class<?> valueClass) String[]
String[]
getErrorMessagesAsString
(String delimiter) org.springframework.validation.Errors
getPath()
getValue()
Class<?>
boolean
isError()
-
Method Details
-
getPath
String getPath() -
getExpression
String getExpression() -
getValue
Object getValue() -
getValueType
Class<?> getValueType() -
getActualValue
Object getActualValue() -
getDisplayValue
String getDisplayValue() -
isError
boolean isError() -
getErrorCodes
String[] getErrorCodes() -
getErrorCode
String getErrorCode() -
getErrorMessages
String[] getErrorMessages() -
getErrorMessage
String getErrorMessage() -
getErrorMessagesAsString
-
getErrors
org.springframework.validation.Errors getErrors() -
getEditor
PropertyEditor getEditor() -
findEditor
-