Uses of Class
com.vaadin.flow.data.binder.Binder
Packages that use Binder
Package
Description
-
Uses of Binder in com.vaadin.collaborationengine
Subclasses of Binder in com.vaadin.collaborationengineModifier and TypeClassDescriptionclass
CollaborationBinder<BEAN>
Extension ofBinder
for creating collaborative forms withCollaborationEngine
. -
Uses of Binder in com.vaadin.flow.component.crud
Constructors in com.vaadin.flow.component.crud with parameters of type BinderModifierConstructorDescriptionBinderCrudEditor
(Binder<E> binder) Initializes a BinderCrudEditor with the given binder and no form viewBinderCrudEditor
(Binder<E> binder, Component view) Initializes a BinderCrudEditor with the given binder and form view -
Uses of Binder in com.vaadin.flow.component.grid.editor
Methods in com.vaadin.flow.component.grid.editor that return BinderModifier and TypeMethodDescriptionEditor.getBinder()
Returns the underlying Binder from Editor.EditorImpl.getBinder()
Methods in com.vaadin.flow.component.grid.editor with parameters of type Binder -
Uses of Binder in com.vaadin.flow.data.binder
Subclasses of Binder in com.vaadin.flow.data.binderModifier and TypeClassDescriptionclass
BeanValidationBinder<BEAN>
Binder that uses reflection based on the provided bean type to resolve bean properties.Methods in com.vaadin.flow.data.binder that return BinderModifier and TypeMethodDescriptionBinder.BindingBuilderImpl.getBinder()
Returns theBinder
connected to thisBinding
instance.Binder.BindingImpl.getBinder()
Returns theBinder
connected to thisBinding
instance.BinderValidationStatus.getBinder()
Gets the source binder of the status.Binder<?>
StatusChangeEvent.getBinder()
Gets the binder.Binder<?>
StatusChangeEvent.getSource()
static <BEAN> Binder<BEAN>
Binder.withPropertySet
(PropertySet<BEAN> propertySet) Creates a binder using a customPropertySet
implementation for finding and resolving property names forbindInstanceFields(Object)
,bind(HasValue, String)
andBinder.BindingBuilder.bind(String)
.Binder.withValidator
(Validator<? super BEAN> validator) Adds an bean level validator.Binder.withValidator
(SerializablePredicate<BEAN> predicate, ErrorMessageProvider errorMessageProvider) A convenience method to add a validator to this binder using theValidator.from(SerializablePredicate, ErrorMessageProvider)
factory method.Binder.withValidator
(SerializablePredicate<BEAN> predicate, String message) A convenience method to add a validator to this binder using theValidator.from(SerializablePredicate, String)
factory method.Methods in com.vaadin.flow.data.binder that return types with arguments of type BinderModifier and TypeMethodDescriptionValueContext.getBinder()
Returns anOptional
for theBinder
owning this value context.Methods in com.vaadin.flow.data.binder with parameters of type BinderModifier and TypeMethodDescriptionstatic <BEAN> BinderValidationStatus<BEAN>
BinderValidationStatus.createUnresolvedStatus
(Binder<BEAN> source) Convenience method for creating a unresolved validation status for the given binder.Constructors in com.vaadin.flow.data.binder with parameters of type BinderModifierConstructorDescriptionBinderValidationStatus
(Binder<BEAN> source, List<BindingValidationStatus<?>> bindingStatuses, List<ValidationResult> binderStatuses) Creates a new binder validation status for the given binder and validation results.protected
BindingBuilderImpl
(Binder<BEAN> binder, HasValue<?, FIELDVALUE> field, Converter<FIELDVALUE, TARGET> converterValidatorChain, BindingValidationStatusHandler statusHandler) Creates a new binding builder associated with the given field.StatusChangeEvent
(Binder<?> binder, boolean hasValidationErrors) Create a new status change event for givenbinder
, storing information of whether the change that triggered this event caused validation errors.ValueContext
(Binder<?> binder) Constructor forValueContext
without aLocale
.ValueContext
(Binder binder, Component component) Constructor forValueContext
.ValueContext
(Binder binder, Component component, HasValue<?, ?> hasValue) Constructor forValueContext
.ValueContext
(Binder binder, Component component, HasValue<?, ?> hasValue, Locale locale) Constructor forValueContext
.ValueContext
(Binder binder, Locale locale) Constructor forValueContext
without aComponent
.