Uses of Class
com.github.tadukoo.database.mysql.syntax.reference.ColumnRef
Packages that use ColumnRef
Package
Description
Contains
DatabasePojo
, which can be used to store and
retrieve the pojo values from a Database
Contains syntax elements to help build SQL statements
Contains syntax elements relating to conditionals
Contains syntax elements for references (e.g.
Contains classes for creating MySQL statements
-
Uses of ColumnRef in com.github.tadukoo.database.mysql.pojo
Fields in com.github.tadukoo.database.mysql.pojo with type parameters of type ColumnRefModifier and TypeFieldDescriptionSubPojoDefinition.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junction
The junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junction
The junction to use for this sub pojo when doing a search on the pojoMethods in com.github.tadukoo.database.mysql.pojo that return types with arguments of type ColumnRefModifier and TypeMethodDescriptionSubPojoDefinition.getJunction()
SubPojoDefinition.getJunction()
Method parameters in com.github.tadukoo.database.mysql.pojo with type arguments of type ColumnRefModifier and TypeMethodDescriptionSubPojoDefinition.SubPojoDefinitionBuilder.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.SubPojoDefinitionBuilder.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.TypeAndJunction.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.TypeAndJunction.typeAndJunction
(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructor parameters in com.github.tadukoo.database.mysql.pojo with type arguments of type ColumnRefModifierConstructorDescriptionprivate
SubPojoDefinition
(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinition
using the given parametersprivate
SubPojoDefinition
(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinition
using the given parameters -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax
Methods in com.github.tadukoo.database.mysql.syntax that return ColumnRefModifier and TypeMethodDescriptionstatic ColumnRef
SQLSyntaxUtil.makeColumnRef
(String columnName) Makes a singleColumnRef
using the given columnNameMethods in com.github.tadukoo.database.mysql.syntax that return types with arguments of type ColumnRefModifier and TypeMethodDescriptionSQLSyntaxUtil.makeColumnRefs
(Collection<String> columnNames) Makes a List ofColumnRefs
using the given columnNamesMethods in com.github.tadukoo.database.mysql.syntax with parameters of type ColumnRefModifier and TypeMethodDescriptionForeignKeyConstraint.ColumnNames.columnRefs
(ColumnRef... columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.columnRefs
(ColumnRef... columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.referenceColumnRefs
(ColumnRef... referenceColumnRefs) ForeignKeyConstraint.ReferenceColumnNames.referenceColumnRefs
(ColumnRef... referenceColumnRefs) Method parameters in com.github.tadukoo.database.mysql.syntax with type arguments of type ColumnRefModifier and TypeMethodDescriptionForeignKeyConstraint.ColumnNames.columnRefs
(List<ColumnRef> columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.columnRefs
(List<ColumnRef> columnRefs) ForeignKeyConstraint.ForeignKeyConstraintBuilder.referenceColumnRefs
(List<ColumnRef> referenceColumnRefs) ForeignKeyConstraint.ReferenceColumnNames.referenceColumnRefs
(List<ColumnRef> referenceColumnRefs) -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.conditional
Fields in com.github.tadukoo.database.mysql.syntax.conditional declared as ColumnRefModifier and TypeFieldDescriptionprivate final ColumnRef
ConditionalStatement.column
The column of this statementprivate ColumnRef
ConditionalStatement.ConditionStatementBuilder.column
TheColumnRef
to the column of the statementprivate final ColumnRef
EqualsStatement.column
Thecolumn
of the statementMethods in com.github.tadukoo.database.mysql.syntax.conditional that return ColumnRefMethods in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ColumnRefModifier and TypeMethodDescriptionConstructors in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ColumnRefModifierConstructorDescriptionprivate
ConditionalStatement
(boolean negated, ColumnRef column, SQLOperator operator, Object value) Constructs a new conditional statement with the given parametersEqualsStatement
(ColumnRef column, Object value) Constructs a new EqualsStatement using the given parameters -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.reference
Methods in com.github.tadukoo.database.mysql.syntax.reference that return ColumnRef -
Uses of ColumnRef in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement with type parameters of type ColumnRefModifier and TypeFieldDescriptionSQLInsertStatement.columns
Thecolumns
to insert intoSQLInsertStatement.SQLInsertStatementBuilder.columns
Thecolumns
to insert intoSQLSelectStatement.returnColumns
The columns to be selectedSQLSelectStatement.SQLSelectStatementBuilder.returnColumns
The columns to be selectedMethods in com.github.tadukoo.database.mysql.syntax.statement that return types with arguments of type ColumnRefModifier and TypeMethodDescriptionSQLInsertStatement.getColumns()
SQLSelectStatement.getReturnColumns()
Methods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ColumnRefModifier and TypeMethodDescriptionSQLSelectStatement.ColumnsOrTables.returnColumns
(ColumnRef... returnColumns) SQLSelectStatement.SQLSelectStatementBuilder.returnColumns
(ColumnRef... returnColumns) Method parameters in com.github.tadukoo.database.mysql.syntax.statement with type arguments of type ColumnRefModifier and TypeMethodDescriptionSQLSelectStatement.ColumnsOrTables.returnColumns
(List<ColumnRef> returnColumns) SQLSelectStatement.SQLSelectStatementBuilder.returnColumns
(List<ColumnRef> returnColumns) Constructor parameters in com.github.tadukoo.database.mysql.syntax.statement with type arguments of type ColumnRefModifierConstructorDescriptionprivate
SQLInsertStatement
(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parametersprivate
SQLSelectStatement
(boolean distinct, List<ColumnRef> returnColumns, List<TableRef> fromTables, Conditional whereStatement) Constructs a newSQLSelectStatement
using the given parameters.