Uses of Interface
com.vaadin.data.Binder.Binding
-
Packages that use Binder.Binding Package Description com.vaadin.data com.vaadin.ui -
-
Uses of Binder.Binding in com.vaadin.data
Classes in com.vaadin.data that implement Binder.Binding Modifier and Type Class Description protected static classBinder.BindingImpl<BEAN,FIELDVALUE,TARGET>An internal implementation ofBinding.Methods in com.vaadin.data that return Binder.Binding Modifier and Type Method Description <FIELDVALUE>
Binder.Binding<BEAN,FIELDVALUE>Binder. bind(HasValue<FIELDVALUE> field, ValueProvider<BEAN,FIELDVALUE> getter, Setter<BEAN,FIELDVALUE> setter)Binds a field to a bean property represented by the given getter and setter pair.<FIELDVALUE>
Binder.Binding<BEAN,FIELDVALUE>Binder. bind(HasValue<FIELDVALUE> field, java.lang.String propertyName)Binds the given field to the property with the given name.Binder.Binding<BEAN,TARGET>Binder.BindingBuilder. bind(ValueProvider<BEAN,TARGET> getter, Setter<BEAN,TARGET> setter)Completes this binding using the given getter and setter functions representing a backing bean property.Binder.Binding<BEAN,TARGET>Binder.BindingBuilder. bind(java.lang.String propertyName)Completes this binding by connecting the field to the property with the given name.Binder.Binding<BEAN,TARGET>Binder.BindingBuilderImpl. bind(ValueProvider<BEAN,TARGET> getter, Setter<BEAN,TARGET> setter)Binder.Binding<BEAN,TARGET>Binder.BindingBuilderImpl. bind(java.lang.String propertyName)Binder.Binding<?,TARGET>BindingValidationStatus. getBinding()Gets the source binding of the validation status.Methods in com.vaadin.data that return types with arguments of type Binder.Binding Modifier and Type Method Description protected java.util.Map<Binder.Binding<BEAN,?>,java.lang.Object>Binder. getBeanState(BEAN bean, java.util.Collection<Binder.Binding<BEAN,?>> bindings)Stores the state of the given bean.java.util.Optional<Binder.Binding<BEAN,?>>Binder. getBinding(java.lang.String propertyName)Gets the binding for a property name.Methods in com.vaadin.data with parameters of type Binder.Binding Modifier and Type Method Description static <TARGET> BindingValidationStatus<TARGET>BindingValidationStatus. createUnresolvedStatus(Binder.Binding<?,TARGET> source)Convenience method for creating aBindingValidationStatus.Status.UNRESOLVEDvalidation status for the given binding.protected voidBinder. handleFieldValueChange(Binder.Binding<BEAN,?> binding, HasValue.ValueChangeEvent<?> event)Informs the Binder that a value in Binding was changed.voidBinder. removeBinding(Binder.Binding<BEAN,?> binding)Removes the given Binding from this Binder.protected voidBinder. removeBindingInternal(Binder.Binding<BEAN,?> binding)Removes (internally) theBindingfrom the bound properties map (if present) and from the list ofBindings.Method parameters in com.vaadin.data with type arguments of type Binder.Binding Modifier and Type Method Description protected java.util.Map<Binder.Binding<BEAN,?>,java.lang.Object>Binder. getBeanState(BEAN bean, java.util.Collection<Binder.Binding<BEAN,?>> bindings)Stores the state of the given bean.protected voidBinder. restoreBeanState(BEAN bean, java.util.Map<Binder.Binding<BEAN,?>,java.lang.Object> oldValues)Restores the state of the bean from the given values.Constructors in com.vaadin.data with parameters of type Binder.Binding Constructor Description BindingValidationStatus(Binder.Binding<?,TARGET> source, BindingValidationStatus.Status status, ValidationResult result)Deprecated.BindingValidationStatus(Binder.Binding<?,TARGET> source, ValidationResult result)Deprecated.BindingValidationStatus(Result<TARGET> result, Binder.Binding<?,TARGET> source)Creates a new status change event. -
Uses of Binder.Binding in com.vaadin.ui
Methods in com.vaadin.ui that return Binder.Binding Modifier and Type Method Description Binder.Binding<T,?>Grid.Column. getEditorBinding()Gets the binder binding that is currently used for this column.Methods in com.vaadin.ui with parameters of type Binder.Binding Modifier and Type Method Description Grid.Column<T,V>Grid.Column. setEditorBinding(Binder.Binding<T,?> binding)Sets an editor binding for this column.
-