Package io.ebean.event
Interface BeanQueryRequest<T>
public interface BeanQueryRequest<T>
Holds the information available for a bean query.
-
Method Summary
Modifier and TypeMethodDescriptiondefault Databasedatabase()Return the DB processing the request.Deprecated.getQuery()Deprecated.default TransactionDeprecated.booleanReturn true if multi-value binding using Array or Table Values is supported.booleanisMultiValueSupported(Class<?> valueType) Return true if multi-value binding is supported for this value type.booleanReturn true if an Id IN expression should have the bind parameters padded.query()Returns the query.Return the Transaction associated with this request.
-
Method Details
-
database
Return the DB processing the request. -
getEbeanServer
Deprecated.Deprecated migrate to database(). -
transaction
Return the Transaction associated with this request. -
getTransaction
Deprecated.Deprecated migrate to transaction(). -
query
Returns the query. -
getQuery
Deprecated.Deprecated migrate to query(). -
isPadInExpression
boolean isPadInExpression()Return true if an Id IN expression should have the bind parameters padded. -
isMultiValueIdSupported
boolean isMultiValueIdSupported()Return true if multi-value binding using Array or Table Values is supported. -
isMultiValueSupported
Return true if multi-value binding is supported for this value type.
-