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

io.ebeaninternal.server.deploy.ElementCollector Maven / Gradle / Ivy

There is a newer version: 15.6.0
Show newest version
package io.ebeaninternal.server.deploy;

/**
 * Collects (List/Set/Map) of elements.
 */
public interface ElementCollector {

  /**
   * Add an element.
   */
  void addElement(Object element);

  /**
   * Add an element.
   */
  void addKeyValue(Object key, Object element);

  /**
   * Return the populated collection/map.
   */
  Object collection();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy