@java.lang.SuppressWarnings("PMD.AvoidFieldNameMatchingMethodName")
public enum HibernateQueryArgument
Typed enum of all query argument keys and Hibernate config property keys used in the
Hibernate 7 datastore. String values are sourced from DynamicFinder for the
query arguments, eliminating the three duplicate sets of raw string constants that
previously existed across HibernateQueryConstants, GrailsHibernateUtil,
and DynamicFinder.
Use value() to obtain the string key for map lookups. toString() also returns the string value so instances can be used in string-interpolated contexts.
| Enum constant | Description |
|---|---|
CACHE |
|
CONFIG_CACHE_QUERIES |
|
CONFIG_OSIV_READONLY |
|
CONFIG_PASS_READONLY |
|
EAGER |
|
FETCH |
|
FETCH_SIZE |
|
FLUSH_MODE |
|
HQL_ALL |
|
HQL_AS |
|
HQL_DISTINCT |
|
HQL_FROM |
|
HQL_GROUP |
|
HQL_HAVING |
|
HQL_INNER |
|
HQL_JOIN |
|
HQL_LEFT |
|
HQL_NEW |
|
HQL_ORDER |
|
HQL_OUTER |
|
HQL_RIGHT |
|
HQL_SELECT |
|
HQL_WHERE |
|
IGNORE_CASE |
|
JOIN |
|
LOCK |
|
MAX |
|
OFFSET |
|
ORDER |
|
ORDER_ASC |
|
ORDER_DESC |
|
READ_ONLY |
|
SORT |
|
TIMEOUT |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#equals(java.lang.Object), java.lang.Object#getClass(), java.lang.Object#hashCode(), java.lang.Object#notify(), java.lang.Object#notifyAll(), java.lang.Object#toString(), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int) |