Uses of Class
io.github.torand.fastersql.model.Column
Packages that use Column
Package
Description
Provides classes and interfaces related to inline value constants for statements.
Provides classes representing arithmetic expressions.
Provides classes representing CASE expressions.
Provides classes and interfaces related to aggregate functions.
Provides classes and interfaces related to single row functions.
Provides classes representing the CAST function.
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 representing set operations.
Provides classes and interfaces related to SQL fragments.
Provides classes and interfaces related to statements.
-
Uses of Column in io.github.torand.fastersql.constant
Methods in io.github.torand.fastersql.constant with parameters of type ColumnModifier and TypeMethodDescriptionCreates a projection of the constant. -
Uses of Column in io.github.torand.fastersql.expression.arithmetic
Methods in io.github.torand.fastersql.expression.arithmetic that return types with arguments of type ColumnModifier and TypeMethodDescriptionAddition.columnRefs()Division.columnRefs()Modulo.columnRefs()Multiplication.columnRefs()Negate.columnRefs()Subtraction.columnRefs() -
Uses of Column in io.github.torand.fastersql.expression.cases
Methods in io.github.torand.fastersql.expression.cases that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.function.aggregate
Methods in io.github.torand.fastersql.function.aggregate that return types with arguments of type ColumnModifier and TypeMethodDescriptionAvg.columnRefs()Count.columnRefs()Max.columnRefs()Min.columnRefs()Sum.columnRefs() -
Uses of Column in io.github.torand.fastersql.function.singlerow
Methods in io.github.torand.fastersql.function.singlerow that return types with arguments of type ColumnModifier and TypeMethodDescriptionAbs.columnRefs()Ceil.columnRefs()Concat.columnRefs()Exp.columnRefs()Floor.columnRefs()Length.columnRefs()Ln.columnRefs()Lower.columnRefs()Power.columnRefs()Round.columnRefs()Sqrt.columnRefs()Substring.columnRefs()ToChar.columnRefs()ToNumber.columnRefs()Upper.columnRefs() -
Uses of Column in io.github.torand.fastersql.function.singlerow.cast
Methods in io.github.torand.fastersql.function.singlerow.cast that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.join
Methods in io.github.torand.fastersql.join that return types with arguments of type ColumnConstructors in io.github.torand.fastersql.join with parameters of type Column -
Uses of Column in io.github.torand.fastersql.model
Methods in io.github.torand.fastersql.model that return ColumnModifier and TypeMethodDescriptionCreates a model of a column belonging to this table.Methods in io.github.torand.fastersql.model that return types with arguments of type ColumnMethods in io.github.torand.fastersql.model with parameters of type Column -
Uses of Column in io.github.torand.fastersql.order
Methods in io.github.torand.fastersql.order that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.predicate
Methods in io.github.torand.fastersql.predicate that return types with arguments of type ColumnModifier and TypeMethodDescriptionIn.columnRefs()InSubquery.columnRefs()IsNull.columnRefs()Like.columnRefs() -
Uses of Column in io.github.torand.fastersql.predicate.comparison
Methods in io.github.torand.fastersql.predicate.comparison that return types with arguments of type ColumnModifier and TypeMethodDescriptionBetween.columnRefs()Eq.columnRefs()Ge.columnRefs()Gt.columnRefs()Le.columnRefs()Lt.columnRefs()Ne.columnRefs() -
Uses of Column in io.github.torand.fastersql.predicate.compound
Methods in io.github.torand.fastersql.predicate.compound that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.setoperation
Methods in io.github.torand.fastersql.setoperation that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.sql
Methods in io.github.torand.fastersql.sql that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement with parameters of type ColumnModifier and TypeMethodDescriptionAdds one or more columns as groups to the GROUP BY clause.UpdateStatement.set(Column column, Expression value) Adds an expression value to be updated for a column.Adds a constant value to be updated for a column.Adds an optional value to be updated for a column.Registers a column-value mapper.InsertStatement.value(Column column, Expression value) Adds an expression value to be inserted into a column.Adds a constant value to be inserted into a column.Adds an optional value to be inserted into a column.