All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.bean.BeanCollectionAdd Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.bean;

/**
 * Interface to define the addition of a bean to the underlying collection.
 * 

* For maps this takes into account the map key. For List and Set this simply * adds the bean to the underlying list or set. *

*/ public interface BeanCollectionAdd { /** * Add a loaded bean to the collection. */ void addEntityBean(EntityBean bean); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy