public interface JPQLQueryDefinition
extends com.holonplatform.core.Expression
| Modifier and Type | Method and Description |
|---|---|
String |
getFrom()
Get the
FROM clause. |
Optional<String> |
getGroupBy()
Get the
GROUP BY clause. |
Optional<String> |
getOrderBy()
Get the
ORDER BY clause. |
Class<?> |
getQueryResultType()
Get the query result type.
|
Optional<JPQLResultConverter<?,?>> |
getResultConverter()
Get the optional
JPQLResultConverter. |
String |
getSelect()
Get the
SELECT clause. |
Optional<String> |
getWhere()
Get the
WHERE clause. |
boolean |
isDistinct()
Get whether to add the DISTINCT clause.
|
String getSelect()
SELECT clause.boolean isDistinct()
String getFrom()
FROM clause.Optional<String> getOrderBy()
ORDER BY clause.Optional<String> getGroupBy()
GROUP BY clause.Class<?> getQueryResultType()
Optional<JPQLResultConverter<?,?>> getResultConverter()
JPQLResultConverter.Copyright © 2019 The Holon Platform. All rights reserved.