
io.ebeaninternal.api.SpiExpressionList Maven / Gradle / Ivy
package io.ebeaninternal.api;
import io.ebean.ExpressionList;
import io.ebean.Junction;
import java.io.IOException;
import java.util.List;
/**
* Internal extension of ExpressionList.
*/
public interface SpiExpressionList extends ExpressionList, SpiExpression {
/**
* Return the expression list as a Junction (for ElasticSearch).
*/
Junction toJunction();
/**
* Return the underlying list of expressions.
*/
List underlyingList();
/**
* Return a copy of the ExpressionList with the path trimmed for filterMany() expressions.
*/
SpiExpressionList> trimPath(int prefixTrim);
/**
* Return true if this list is empty.
*/
boolean isEmpty();
/**
* Apply firstRow maxRows limits on the filterMany query.
*/
default void applyRowLimits(SpiQuery> query) {
// do nothing by default
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy