public static interface ParameterParser.Recognizer
| Modifier and Type | Method and Description |
|---|---|
void |
complete() |
void |
jpaPositionalParameter(int identifier,
int position)
Called when a JPA-style named parameter is recognized
|
void |
namedParameter(String name,
int position)
Called when a named parameter is recognized
|
void |
ordinalParameter(int position)
Called when an ordinal parameter is recognized
|
void |
other(char character)
Called when a character that is not a parameter (or part of a parameter definition) is recognized.
|
void |
outParameter(int position)
Called when an output parameter is recognized
|
void outParameter(int position)
position - The position within the queryvoid ordinalParameter(int position)
position - The position within the queryvoid namedParameter(String name, int position)
name - The recognized parameter nameposition - The position within the queryvoid jpaPositionalParameter(int identifier,
int position)
identifier - The identifier (name) of the JPA-style parameterposition - The position within the queryvoid other(char character)
character - The recognized charactervoid complete()
Copyright © 2001-2022 Red Hat, Inc. All Rights Reserved.