Uses of Class
org.jooq.impl.ParserException
Packages that use ParserException
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of ParserException in org.jooq
Methods in org.jooq that return ParserExceptionModifier and TypeMethodDescription@NotNull ParserException
An exception that can be thrown from the current position.Methods in org.jooq that throw ParserExceptionModifier 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.default @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.default void
ParseListener.parseEnd
(ParseContext ctx) Callback method invoked after the parser successfully completes parsing a SQL string.@NotNull Field<?>
ParseContext.parseField()
Parse aField
expression or fail if the current expression is not a field.default @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.default void
ParseListener.parseStart
(ParseContext ctx) Callback method invoked before the parser starts parsing a SQL string.@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.default @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
Methods in org.jooq.impl that return ParserExceptionModifier and TypeMethodDescriptionfinal ParserException
ParserException.column
(int c) Set thecolumn()
.final ParserException
ParserException.line
(int l) Set theline()
.final ParserException
ParserException.position
(int p) Set theposition()
.