Java org.springframework.web.servlet.support BindStatus fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet.support BindStatus fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet.support BindStatus.

The text is from its open source code.

Subclass

org.springframework.web.servlet.support.BindStatus has subclasses.
Click this link to see all its subclasses.

Constructor

BindStatus(RequestContext requestContext, String path, boolean htmlEscape)
Create a new BindStatus instance, representing a field or object status.

Method

PropertyEditorfindEditor(Class valueClass)
Find a PropertyEditor for the given value class, associated with the property that this bound status is currently bound to.
ObjectgetActualValue()
Return the actual value of the field, i.e.
PropertyEditorgetEditor()
Return the PropertyEditor for the property that this bind status is currently bound to.
ErrorsgetErrors()
Return the Errors instance (typically a BindingResult) that this bind status is currently associated with.
StringgetExpression()
Return a bind expression that can be used in HTML forms as input name for the respective field, or null if not field-specific.
ObjectgetValue()
Return the current value of the field, i.e.
ClassgetValueType()
Get the ' Class ' type of the field.
booleanisError()
Return if this status represents a field or object error.