We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.data.util.
Interface AbstractBeanContainer.BeanIdResolver<IDTYPE,BEANTYPE>
-
Type Parameters:
IDTYPE
-BEANTYPE
-All Superinterfaces:
All Known Implementing Classes:
Enclosing class:
public static interface AbstractBeanContainer.BeanIdResolver<IDTYPE,BEANTYPE> extends Serializable
Resolver that maps beans to their (item) identifiers, removing the need to explicitly specify item identifiers when there is no need to customize this. Note that beans can also be added with an explicit id even if a resolver has been set.
Since:
6.5
-
-
Method Summary
All Methods Modifier and Type Method Description IDTYPE
getIdForBean(BEANTYPE bean)
Return the item identifier for a bean.
-