com.atlassian.jira.jql.parser.JqlQueryParser |
![]()
|
Used to parse some JQL into its Query
representation.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Determines whether or not the passed string is a valid JQL field name.
| |||||||||||
Determines whether or not the passed string is a valid JQL function argument.
| |||||||||||
Determines whether or not the passed string is a valid JQL function name.
| |||||||||||
Determines whether or not the passed string is a valid JQL value.
| |||||||||||
Parse the passed JQL string into its SearchQuery representation.
|
Determines whether or not the passed string is a valid JQL field name.
fieldName | the field name to check. |
---|
Determines whether or not the passed string is a valid JQL function argument.
argument | the function argument to check. |
---|
Determines whether or not the passed string is a valid JQL function name.
functionName | the function name to check. |
---|
Determines whether or not the passed string is a valid JQL value.
value | the value to check. |
---|
Parse the passed JQL string into its SearchQuery representation.
jqlQuery | the JQL string to parse. Must not be null or blank. |
---|
JqlParseException | if an error occurs while parsing the query. |
---|---|
IllegalArgumentException | if jqlQuery is null or blank.
|