Package com.vaadin.data
Class BeanPropertySet.NestedBeanPropertyDefinition<T,V>
- java.lang.Object
-
- com.vaadin.data.AbstractBeanPropertyDefinition<T,V>
-
- com.vaadin.data.BeanPropertySet.NestedBeanPropertyDefinition<T,V>
-
- Type Parameters:
T
- the bean typeV
- the value type returned by the getter and set by the setter
- All Implemented Interfaces:
PropertyDefinition<T,V>
,Serializable
- Enclosing class:
- BeanPropertySet<T>
public static class BeanPropertySet.NestedBeanPropertyDefinition<T,V> extends AbstractBeanPropertyDefinition<T,V>
Contains properties for a bean type which is nested in another definition.- Since:
- 8.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static int
MAX_PROPERTY_NESTING_DEPTH
Default maximum depth for scanning nested properties.
-
Constructor Summary
Constructors Constructor Description NestedBeanPropertyDefinition(BeanPropertySet<T> propertySet, PropertyDefinition<T,?> parent, PropertyDescriptor descriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValueProvider<T,V>
getGetter()
Gets the value provider that is used for finding the value of this property for a bean.String
getName()
Gets the full name of this property.PropertyDefinition<T,?>
getParent()
Gets the parent property definition.Optional<Setter<T,V>>
getSetter()
Gets an optional setter for storing a property value in a bean.String
getTopLevelName()
Gets the top level name of this property.-
Methods inherited from class com.vaadin.data.AbstractBeanPropertyDefinition
getCaption, getDescriptor, getPropertyHolderType, getPropertySet, getType
-
-
-
-
Field Detail
-
MAX_PROPERTY_NESTING_DEPTH
protected static final int MAX_PROPERTY_NESTING_DEPTH
Default maximum depth for scanning nested properties.- Since:
- 8.2
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NestedBeanPropertyDefinition
public NestedBeanPropertyDefinition(BeanPropertySet<T> propertySet, PropertyDefinition<T,?> parent, PropertyDescriptor descriptor)
-
-
Method Detail
-
getGetter
public ValueProvider<T,V> getGetter()
Description copied from interface:PropertyDefinition
Gets the value provider that is used for finding the value of this property for a bean.- Returns:
- the getter, not
null
-
getSetter
public Optional<Setter<T,V>> getSetter()
Description copied from interface:PropertyDefinition
Gets an optional setter for storing a property value in a bean.- Returns:
- the setter, or an empty optional if this property is read-only
-
getName
public String getName()
Description copied from interface:PropertyDefinition
Gets the full name of this property.- Specified by:
getName
in interfacePropertyDefinition<T,V>
- Overrides:
getName
in classAbstractBeanPropertyDefinition<T,V>
- Returns:
- the property name, not
null
-
getTopLevelName
public String getTopLevelName()
Description copied from interface:PropertyDefinition
Gets the top level name of this property.- Returns:
- the top level property name, not
null
-
getParent
public PropertyDefinition<T,?> getParent()
Gets the parent property definition.- Returns:
- the property definition for the parent
-
-