mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Initial support - add simple Set support and Json support for simple List and Set.
14 lines
198 B
Java
14 lines
198 B
Java
package io.ebeaninternal.server.deploy;
|
|
|
|
/**
|
|
* Helper for handling ElementCollection.
|
|
*/
|
|
interface ElementHelp {
|
|
|
|
/**
|
|
* Return a new collector.
|
|
*/
|
|
ElementCollector createCollector();
|
|
|
|
}
|