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 thisBindStatus
.- Since:
- 3.0.3
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyEditor
findEditor(Class<?> valueClass)
Object
getActualValue()
String
getDisplayValue()
PropertyEditor
getEditor()
String
getErrorCode()
String[]
getErrorCodes()
String
getErrorMessage()
String[]
getErrorMessages()
String
getErrorMessagesAsString(String delimiter)
org.springframework.validation.Errors
getErrors()
String
getExpression()
String
getPath()
Object
getValue()
Class<?>
getValueType()
boolean
isError()
-
-
-
Method Detail
-
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()
-
getErrors
org.springframework.validation.Errors getErrors()
-
getEditor
PropertyEditor getEditor()
-
findEditor
PropertyEditor findEditor(Class<?> valueClass)
-
-