Package org.hibernate.annotations
Class QueryHints
- java.lang.Object
-
- org.hibernate.annotations.QueryHints
-
@Deprecated(since="6.0") public final class QueryHints extends Object
Deprecated.UseAvailableHints
insteadList of hints that may be passed toQuery.setHint(String, Object)
to control execution of a query. Each of these hints corresponds to a typesafe operation of theQuery
interface, and so hints are only necessary for programs working with the JPA APIs.- See Also:
AvailableHints
-
-
Field Summary
Fields Modifier and Type Field Description static String
CACHE_MODE
Deprecated.static String
CACHE_REGION
Deprecated.static String
CACHEABLE
Deprecated.static String
CALLABLE_FUNCTION
Deprecated.Calling stored-procedures and functions viaNativeQuery
is no longer supported.static String
COMMENT
Deprecated.static String
FETCH_SIZE
Deprecated.static String
FLUSH_MODE
Deprecated.static String
FOLLOW_ON_LOCKING
Deprecated.static String
NATIVE_LOCKMODE
Deprecated.static String
NATIVE_SPACES
Deprecated.static String
READ_ONLY
Deprecated.static String
TIMEOUT_HIBERNATE
Deprecated.static String
TIMEOUT_JAKARTA_JPA
Deprecated.static String
TIMEOUT_JPA
Deprecated.
-
-
-
Field Detail
-
READ_ONLY
public static final String READ_ONLY
Deprecated.
-
CACHEABLE
public static final String CACHEABLE
Deprecated.
-
CACHE_MODE
public static final String CACHE_MODE
Deprecated.
-
CACHE_REGION
public static final String CACHE_REGION
Deprecated.
-
COMMENT
public static final String COMMENT
Deprecated.- See Also:
HibernateHints.HINT_COMMENT
, Constant Field Values
-
FETCH_SIZE
public static final String FETCH_SIZE
Deprecated.
-
FLUSH_MODE
public static final String FLUSH_MODE
Deprecated.
-
TIMEOUT_HIBERNATE
public static final String TIMEOUT_HIBERNATE
Deprecated.- See Also:
HibernateHints.HINT_TIMEOUT
, Constant Field Values
-
TIMEOUT_JAKARTA_JPA
public static final String TIMEOUT_JAKARTA_JPA
Deprecated.
-
NATIVE_LOCKMODE
public static final String NATIVE_LOCKMODE
Deprecated.
-
FOLLOW_ON_LOCKING
public static final String FOLLOW_ON_LOCKING
Deprecated.
-
NATIVE_SPACES
public static final String NATIVE_SPACES
Deprecated.
-
CALLABLE_FUNCTION
@Deprecated public static final String CALLABLE_FUNCTION
Deprecated.Calling stored-procedures and functions viaNativeQuery
is no longer supported. UseProcedureCall
orStoredProcedureQuery
instead.
-
TIMEOUT_JPA
public static final String TIMEOUT_JPA
Deprecated.
-
-