Package org.hibernate.query.sqm.spi
Interface ParameterDeclarationContext
public interface ParameterDeclarationContext
Describes the context in which a parameter is declared. This is used mainly to
determine metadata about the parameter (
SqmParameter.allowMultiValuedBinding()
, e.g.)-
Method Summary
Modifier and TypeMethodDescriptionboolean
Are multi-valued parameter bindings allowed in this context?
-
Method Details
-
isMultiValuedBindingAllowed
boolean isMultiValuedBindingAllowed()Are multi-valued parameter bindings allowed in this context?- Returns:
true
if they are;false
otherwise.
-