java.lang.Object
org.eclipse.persistence.config.ParameterDelimiterType
Parameter delimiter char hint values.
The class contains the default value for QueryHints.PARAMETER_DELIMITER query hint. A single char should be specified if the default hash symbol needs to be overridden.
i.e. "%"
JPA Query Hint usage:
query.setHint(QueryHints.PARAMETER_DELIMITER, "%");
or
@QueryHint(name=QueryHints.PARAMETER_DELIMITER, value="%")
Hint values are case-insensitive. "" cannot be used - and will be replaced with the default value ParameterDelimiterType.DEFAULT
- See Also:
-
Field Summary
Fields -
Method Summary
-
Field Details
-
Hash
- See Also:
-
DEFAULT
- See Also:
-