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 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

      String getErrorMessagesAsString(String delimiter)
    • getErrors

      org.springframework.validation.Errors getErrors()
    • getEditor

      PropertyEditor getEditor()
    • findEditor

      PropertyEditor findEditor(Class<?> valueClass)