Uses of Interface
com.vaadin.flow.data.binder.PropertyDefinition
-
Packages that use PropertyDefinition Package Description com.vaadin.collaborationengine com.vaadin.flow.data.binder -
-
Uses of PropertyDefinition in com.vaadin.collaborationengine
Methods in com.vaadin.collaborationengine with parameters of type PropertyDefinition Modifier and Type Method Description protected Binder.BindingBuilder<BEAN,?>
CollaborationBinder. configureBinding(Binder.BindingBuilder<BEAN,?> baseBinding, PropertyDefinition<BEAN,?> definition)
-
Uses of PropertyDefinition in com.vaadin.flow.data.binder
Classes in com.vaadin.flow.data.binder that implement PropertyDefinition Modifier and Type Class Description class
AbstractBeanPropertyDefinition<T,V>
Abstract base class for PropertyDefinition implementations for beans.static class
BeanPropertySet.NestedBeanPropertyDefinition<T,V>
Contains properties for a bean type which is nested in another definition.Methods in com.vaadin.flow.data.binder that return PropertyDefinition Modifier and Type Method Description PropertyDefinition<T,?>
BeanPropertySet.NestedBeanPropertyDefinition. getParent()
PropertyDefinition<T,?>
PropertyDefinition. getParent()
Gets the parent property of this property if this is a sub-property of the property set.Methods in com.vaadin.flow.data.binder that return types with arguments of type PropertyDefinition Modifier and Type Method Description Stream<PropertyDefinition<T,?>>
BeanPropertySet. getProperties()
Stream<PropertyDefinition<T,?>>
PropertySet. getProperties()
Gets all known properties as a stream.Optional<PropertyDefinition<T,?>>
BeanPropertySet. getProperty(String name)
Optional<PropertyDefinition<T,?>>
PropertySet. getProperty(String name)
Gets the definition for the named property, or an empty optional if there is no property with the given name.Methods in com.vaadin.flow.data.binder with parameters of type PropertyDefinition Modifier and Type Method Description protected Binder.BindingBuilder<BEAN,?>
BeanValidationBinder. configureBinding(Binder.BindingBuilder<BEAN,?> binding, PropertyDefinition<BEAN,?> definition)
protected Binder.BindingBuilder<BEAN,?>
Binder. configureBinding(Binder.BindingBuilder<BEAN,?> binding, PropertyDefinition<BEAN,?> definition)
Configures thebinding
with the property definitiondefinition
before it's being bound.Constructors in com.vaadin.flow.data.binder with parameters of type PropertyDefinition Constructor Description NestedBeanPropertyDefinition(BeanPropertySet<T> propertySet, PropertyDefinition<T,?> parent, PropertyDescriptor descriptor)
Creates a new instance of a nested property definition.
-