Uses of Class
io.github.torand.fastersql.sql.Context
Packages that use Context
Package
Description
Provides classes and interfaces related to column and table aliases.
Provides classes and interfaces related to inline value constants for statements.
Provides classes representing arithmetic expressions.
Provides classes and interfaces related to aggregate functions.
Provides classes and interfaces related to single row functions.
Provides classes and interfaces related to system functions.
Provides classes representing join clauses.
Provides classes representing the database model.
Provides classes and interfaces representing order clauses.
Provides classes and interfaces related to predicates.
Provides classes and interfaces representing comparison predicates.
Provides classes and interfaces representing predicates made up by multiple sub-predicates.
Provides classes and interfaces related to projections.
Provides classes and interfaces related to SQL fragments.
Provides classes and interfaces related to statements.
Provides classes and interfaces related to subqueries.
-
Uses of Context in io.github.torand.fastersql.alias
Methods in io.github.torand.fastersql.alias with parameters of type ContextModifier and TypeMethodDescription -
Uses of Context in io.github.torand.fastersql.constant
Methods in io.github.torand.fastersql.constant with parameters of type Context -
Uses of Context in io.github.torand.fastersql.expression.arithmetic
Methods in io.github.torand.fastersql.expression.arithmetic with parameters of type ContextModifier and TypeMethodDescription -
Uses of Context in io.github.torand.fastersql.function.aggregate
Methods in io.github.torand.fastersql.function.aggregate with parameters of type ContextModifier and TypeMethodDescription -
Uses of Context in io.github.torand.fastersql.function.singlerow
Methods in io.github.torand.fastersql.function.singlerow with parameters of type ContextModifier and TypeMethodDescription -
Uses of Context in io.github.torand.fastersql.function.system
Methods in io.github.torand.fastersql.function.system with parameters of type Context -
Uses of Context in io.github.torand.fastersql.join
Methods in io.github.torand.fastersql.join with parameters of type Context -
Uses of Context in io.github.torand.fastersql.model
Methods in io.github.torand.fastersql.model with parameters of type Context -
Uses of Context in io.github.torand.fastersql.order
Methods in io.github.torand.fastersql.order with parameters of type Context -
Uses of Context in io.github.torand.fastersql.predicate
Methods in io.github.torand.fastersql.predicate with parameters of type ContextModifier and TypeMethodDescriptionExistsSubquery.negatedSql
(Context context) In.negatedSql
(Context context) InSubquery.negatedSql
(Context context) IsNull.negatedSql
(Context context) Like.negatedSql
(Context context) Predicate.negatedSql
(Context context) Formats negated predicate as an SQL fragment. -
Uses of Context in io.github.torand.fastersql.predicate.comparison
Methods in io.github.torand.fastersql.predicate.comparison with parameters of type ContextModifier and TypeMethodDescriptionEq.negatedSql
(Context context) Ge.negatedSql
(Context context) Gt.negatedSql
(Context context) Le.negatedSql
(Context context) Lt.negatedSql
(Context context) -
Uses of Context in io.github.torand.fastersql.predicate.compound
Methods in io.github.torand.fastersql.predicate.compound with parameters of type ContextModifier and TypeMethodDescriptionAnd.negatedSql
(Context context) Not.negatedSql
(Context context) Or.negatedSql
(Context context) -
Uses of Context in io.github.torand.fastersql.projection
Methods in io.github.torand.fastersql.projection with parameters of type Context -
Uses of Context in io.github.torand.fastersql.sql
Methods in io.github.torand.fastersql.sql that return ContextModifier and TypeMethodDescriptionstatic Context
Creates context with specified SQL dialect.Context.withClause
(Clause clause) Sets the current statement clause.Context.withCommand
(Command command) Sets the current statement command.Context.withOuterStatement
(SelectStatement outerStatement) Sets the current outer statement.Methods in io.github.torand.fastersql.sql with parameters of type Context -
Uses of Context in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement with parameters of type ContextModifier and TypeMethodDescription -
Uses of Context in io.github.torand.fastersql.subquery
Methods in io.github.torand.fastersql.subquery with parameters of type Context