- java.lang.Object
-
- org.eclipse.persistence.config.HintValues
-
public class HintValues extends Object
Hint values. The class defines boolean values used by some EclipseLink query hints.JPA Query Hint Usage:
query.setHint(QueryHints.REFRESH, HintValues.TRUE);or
@QueryHint(name=QueryHints.REFRESH, value=HintValues.TRUE)Hint values are case-insensitive.
- See Also:
QueryHints
-
-
Constructor Summary
Constructors Constructor Description HintValues()Deprecated, for removal: This API element is subject to removal in a future version.This constructor will be marked private and the class final.
-
-
-
Field Detail
-
TRUE
public static final String TRUE
- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
- See Also:
- Constant Field Values
-
PERSISTENCE_UNIT_DEFAULT
public static final String PERSISTENCE_UNIT_DEFAULT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
HintValues
@Deprecated(since="4.0.3", forRemoval=true) public HintValues()
Deprecated, for removal: This API element is subject to removal in a future version.This constructor will be marked private and the class final. It is not designed for extensibility.
-
-