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 into a set ofQueries
.@NotNull Queries
Parse a SQL string with bind variables into a set ofQueries
.@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 into aCondition
.@NotNull Condition
Parser.parseCondition
(String sql, Object... bindings) Parse a SQL string with bind variables into aCondition
.@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 into aField
.@NotNull Field
<?> Parser.parseField
(String sql, Object... bindings) Parse a SQL string with bind variables into aField
.@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 into a nameName
.@NotNull Name
Parse a SQL string with bind variables into a nameName
.@Nullable Query
Parser.parseQuery
(String sql) Parse a SQL string into aQuery
.@Nullable Query
Parser.parseQuery
(String sql, Object... bindings) Parse a SQL string with bind variables into aQuery
.@Nullable ResultQuery
<?> Parser.parseResultQuery
(String sql) Parse a SQL string into aResultQuery
.@Nullable ResultQuery
<?> Parser.parseResultQuery
(String sql, Object... bindings) Parse a SQL string with bind variables into aResultQuery
.@NotNull Row
Parse a SQL string into aRow
.@NotNull Row
Parse a SQL string with bind variables into aRow
.@Nullable Select
<?> Parser.parseSelect
(String sql) Parse a SQL string into aSelect
statement.@Nullable Select
<?> Parser.parseSelect
(String sql, Object... bindings) Parse a SQL string into aSelect
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 into a proceduralStatement
.@Nullable Statement
Parser.parseStatement
(String sql, Object... bindings) Parse a SQL string with bind variables into a proceduralStatement
.@NotNull Block
Parser.parseStatements
(String sql) Parse a SQL string into a proceduralBlock
statement.@NotNull Block
Parser.parseStatements
(String sql, Object... bindings) Parse a SQL string with bind variables into a proceduralBlock
statement.@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 into aTable
.@NotNull Table
<?> Parser.parseTable
(String sql, Object... bindings) Parse a SQL string with bind variables into aTable
.@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 TypeMethodDescriptionfinal ParserException
ParserException.column
(int c) Set thecolumn()
.final ParserException
ParserException.line
(int l) Set theline()
.final ParserException
ParserException.position
(int p) Set theposition()
.