mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
23 lines
328 B
Java
23 lines
328 B
Java
package io.ebean.service;
|
|
|
|
import io.ebean.InTuples;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Internal extension to InTuples.
|
|
*/
|
|
public interface SpiInTuples extends InTuples {
|
|
|
|
/**
|
|
* Return the properties of the tuples.
|
|
*/
|
|
String[] properties();
|
|
|
|
/**
|
|
* Return all the tuple entries.
|
|
*/
|
|
List<Object[]> entries();
|
|
|
|
}
|