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 DatabaseContains 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.junctionThe junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.junctionThe junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junctionThe junction to use for this sub pojo when doing a search on the pojoSubPojoDefinition.SubPojoDefinitionBuilder.junctionThe 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 ColumnRefModifierConstructorDescriptionprivateSubPojoDefinition(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinitionusing the given parametersprivateSubPojoDefinition(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinitionusing 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 ColumnRefSQLSyntaxUtil.makeColumnRef(String columnName) Makes a singleColumnRefusing 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 ofColumnRefsusing 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 ColumnRefConditionalStatement.columnThe column of this statementprivate ColumnRefConditionalStatement.ConditionStatementBuilder.columnTheColumnRefto the column of the statementprivate final ColumnRefEqualsStatement.columnThecolumnof 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 ColumnRefModifierConstructorDescriptionprivateConditionalStatement(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.columnsThecolumnsto insert intoSQLInsertStatement.SQLInsertStatementBuilder.columnsThecolumnsto insert intoSQLSelectStatement.returnColumnsThe columns to be selectedSQLSelectStatement.SQLSelectStatementBuilder.returnColumnsThe 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 ColumnRefModifierConstructorDescriptionprivateSQLInsertStatement(TableRef table, List<ColumnRef> columns, List<Object> values, SQLSelectStatement selectStmt) Constructs a new SQLInsertStatement using the given parametersprivateSQLSelectStatement(boolean distinct, List<ColumnRef> returnColumns, List<TableRef> fromTables, Conditional whereStatement) Constructs a newSQLSelectStatementusing the given parameters.