Uses of Class
org.jooq.impl.ParserException
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of ParserException in org.jooq
Modifier and TypeMethodDescription@NotNull ParserException
An exception that can be thrown from the current position.Modifier and TypeMethodDescription@NotNull Meta
Create meta data from a set of sources.@NotNull Meta
Create meta data from a set of sources.boolean
ParseContext.parse(char c)
Parse a single character or fail if it cannot be parsed.boolean
Parse a string or fail if it cannot be parsed.@NotNull Queries
Parse a SQL string to a set of queries.@NotNull Queries
Parse a SQL string with bind variables to a set of queries.@NotNull Condition
ParseContext.parseCondition()
Parse aCondition
expression or fail if the current expression is not a condition.@Nullable Condition
ParseListener.parseCondition(ParseContext ctx)
Attempt to parse aCondition
expression.@NotNull Condition
Parser.parseCondition(String sql)
Parse a SQL string to a condition.@NotNull Condition
Parser.parseCondition(String sql, Object... bindings)
Parse a SQL string with bind variables to a condition.@NotNull DataType<?>
ParseContext.parseDataType()
Parse aDataType
expression or fail if the current expression is not a data type.@NotNull Field<?>
ParseContext.parseField()
Parse aField
expression or fail if the current expression is not a field.@Nullable Field<?>
ParseListener.parseField(ParseContext ctx)
Attempt to parse aField
expression.@NotNull Field<?>
Parser.parseField(String sql)
Parse a SQL string to a field.@NotNull Field<?>
Parser.parseField(String sql, Object... bindings)
Parse a SQL string with bind variables to a field.@NotNull Name
ParseContext.parseIdentifier()
Parse an (unqualified) identifier or fail if the current token is not an identifier.boolean
ParseContext.parseKeyword(String keyword)
Parse a keyword or fail if the keyword cannot be parsed.boolean
ParseContext.parseKeyword(String... keywords)
Parse any keyword or fail if none of the keywords could be parsed.@NotNull Name
ParseContext.parseName()
Parse a name (a qualified identifier) or fail if the current token is not a name.@NotNull Name
Parse a SQL string to a name.@NotNull Name
Parse a SQL string with bind variables to a name.@Nullable Query
Parser.parseQuery(String sql)
Parse a SQL string to a query.@Nullable Query
Parser.parseQuery(String sql, Object... bindings)
Parse a SQL string with bind variables to a query.@Nullable ResultQuery<?>
Parser.parseResultQuery(String sql)
Parse a SQL string to a result query.@Nullable ResultQuery<?>
Parser.parseResultQuery(String sql, Object... bindings)
Parse a SQL string with bind variables to a result query.@NotNull Row
Parse a SQL string to a row.@NotNull Row
Parse a SQL string with bind variables to a row.@Nullable Select<?>
Parser.parseSelect(String sql)
Parse a SQL string to a select statement.@Nullable Select<?>
Parser.parseSelect(String sql, Object... bindings)
Parse a SQL string to a select statement.@NotNull Long
ParseContext.parseSignedIntegerLiteral()
Parse a signed integer literal or fail if the current token is not a signed integer literal.@NotNull SortField<?>
ParseContext.parseSortField()
Parse aSortField
expression or fail if the current expression is not a sort field.@Nullable Statement
Parser.parseStatement(String sql)
Parse a SQL string to a procedural statement.@Nullable Statement
Parser.parseStatement(String sql, Object... bindings)
Parse a SQL string with bind variables to a procedural statement.@NotNull Block
Parser.parseStatements(String sql)
Parse a SQL string to a set of procedural statements.@NotNull Block
Parser.parseStatements(String sql, Object... bindings)
Parse a SQL string with bind variables to a set of procedural statements.@NotNull String
ParseContext.parseStringLiteral()
Parse a string literal or fail if the current token is not a string literal.@NotNull Table<?>
ParseContext.parseTable()
Parse aTable
expression or fail if the current expression is not a table.@Nullable Table<?>
ParseListener.parseTable(ParseContext ctx)
Attempt to parse aTable
expression.@NotNull Table<?>
Parser.parseTable(String sql)
Parse a SQL string to a table.@NotNull Table<?>
Parser.parseTable(String sql, Object... bindings)
Parse a SQL string with bind variables to a table.@NotNull Long
ParseContext.parseUnsignedIntegerLiteral()
Parse an unsigned integer literal or fail if the current token is not an unsigned integer literal. -
Uses of ParserException in org.jooq.impl
Modifier and TypeMethodDescriptionParserException.column(int c)
Set thecolumn()
.ParserException.line(int l)
Set theline()
.ParserException.position(int p)
Set theposition()
.Modifier and TypeMethodDescriptionCallbackParseListener.parseCondition(ParseContext ctx)
Field<?>
CallbackParseListener.parseField(ParseContext ctx)
Table<?>
CallbackParseListener.parseTable(ParseContext ctx)