Package org.hibernate.query.sql.internal
Class ParameterRecognizerImpl
- java.lang.Object
-
- org.hibernate.query.sql.internal.ParameterRecognizerImpl
-
- All Implemented Interfaces:
ParameterRecognizer
public class ParameterRecognizerImpl extends Object implements ParameterRecognizer
-
-
Constructor Summary
Constructors Constructor Description ParameterRecognizerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcomplete()Callback after all parsing is completeStringgetAdjustedSqlString()Map<String,QueryParameterImplementor<?>>getNamedQueryParameters()List<ParameterOccurrence>getParameterList()Map<Integer,QueryParameterImplementor<?>>getPositionalQueryParameters()voidjpaPositionalParameter(int position, int sourcePosition)Called when a JPA-style named parameter is recognizedvoidnamedParameter(String name, int sourcePosition)Called when a named parameter is recognizedvoidordinalParameter(int sourcePosition)Called when an ordinal parameter is recognizedvoidother(char character)Called when a character that is not part of a parameter is recognized.
-
-
-
Method Detail
-
complete
public void complete()
Description copied from interface:ParameterRecognizerCallback after all parsing is complete- Specified by:
completein interfaceParameterRecognizer
-
getNamedQueryParameters
public Map<String,QueryParameterImplementor<?>> getNamedQueryParameters()
-
getPositionalQueryParameters
public Map<Integer,QueryParameterImplementor<?>> getPositionalQueryParameters()
-
getParameterList
public List<ParameterOccurrence> getParameterList()
-
getAdjustedSqlString
public String getAdjustedSqlString()
-
ordinalParameter
public void ordinalParameter(int sourcePosition)
Description copied from interface:ParameterRecognizerCalled when an ordinal parameter is recognized- Specified by:
ordinalParameterin interfaceParameterRecognizer- Parameters:
sourcePosition- The position within the query
-
namedParameter
public void namedParameter(String name, int sourcePosition)
Description copied from interface:ParameterRecognizerCalled when a named parameter is recognized- Specified by:
namedParameterin interfaceParameterRecognizer- Parameters:
name- The recognized parameter namesourcePosition- The position within the query
-
jpaPositionalParameter
public void jpaPositionalParameter(int position, int sourcePosition)Description copied from interface:ParameterRecognizerCalled when a JPA-style named parameter is recognized- Specified by:
jpaPositionalParameterin interfaceParameterRecognizer- Parameters:
position- The label (identifier) of the JPA-style parameter. e.g. for a parameter `?2`, the label is `2`sourcePosition- The position within the query
-
other
public void other(char character)
Description copied from interface:ParameterRecognizerCalled when a character that is not part of a parameter is recognized.- Specified by:
otherin interfaceParameterRecognizer- Parameters:
character- The recognized character
-
-