Package org.hibernate.query.sql.spi
Interface ParameterInterpretation
-
public interface ParameterInterpretation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAdjustedSqlString()
List<ParameterOccurrence>
getOrderedParameterOccurrences()
Access to the defined parameters in the order they were encountered, potentially including "duplicate references" to a single parameterParameterMetadataImplementor
toParameterMetadata(SharedSessionContractImplementor session)
Create the ParameterMetadata representation of this interpretation
-
-
-
Method Detail
-
getOrderedParameterOccurrences
List<ParameterOccurrence> getOrderedParameterOccurrences()
Access to the defined parameters in the order they were encountered, potentially including "duplicate references" to a single parameter
-
toParameterMetadata
ParameterMetadataImplementor toParameterMetadata(SharedSessionContractImplementor session)
Create the ParameterMetadata representation of this interpretation
-
getAdjustedSqlString
String getAdjustedSqlString()
-
-