Uses of Interface
org.jooq.meta.ColumnDefinition
-
-
Uses of ColumnDefinition in org.jooq.meta
Classes in org.jooq.meta that implement ColumnDefinition Modifier and Type Class Description classDefaultColumnDefinitionA base implementation for column definitions.Methods in org.jooq.meta that return ColumnDefinition Modifier and Type Method Description ColumnDefinitionAbstractTableDefinition. getColumn(int columnIndex)ColumnDefinitionAbstractTableDefinition. getColumn(String columnName)ColumnDefinitionAbstractTableDefinition. getColumn(String columnName, boolean ignoreCase)ColumnDefinitionDefaultIdentityDefinition. getColumn()ColumnDefinitionDefaultIndexColumnDefinition. getColumn()ColumnDefinitionIdentityDefinition. getColumn()TheIDENTITYcolumnColumnDefinitionIndexColumnDefinition. getColumn()The table column definition that this index column definition is backed by.ColumnDefinitionTableDefinition. getColumn(int columnIndex)Get a column in this type by its index (starting at 0).ColumnDefinitionTableDefinition. getColumn(String columnName)Get a column in this type by its name.ColumnDefinitionTableDefinition. getColumn(String columnName, boolean ignoreCase)Get a column in this type by its name.ColumnDefinitionDefaultEmbeddableColumnDefinition. getReferencingColumn()ColumnDefinitionEmbeddableColumnDefinition. getReferencingColumn()The referencing column definition.Methods in org.jooq.meta that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>AbstractTableDefinition. getColumns()List<ColumnDefinition>TableDefinition. getColumns()All columns in the type, table or view.protected List<ColumnDefinition>AbstractTableDefinition. getElements0()List<ColumnDefinition>DefaultMetaTableDefinition. getElements0()List<ColumnDefinition>DefaultForeignKeyDefinition. getKeyColumns()List<ColumnDefinition>DefaultUniqueKeyDefinition. getKeyColumns()List<ColumnDefinition>ForeignKeyDefinition. getKeyColumns()The list of columns making up the foreign key.List<ColumnDefinition>UniqueKeyDefinition. getKeyColumns()The list of columns making up the primary key.List<ColumnDefinition>DefaultForeignKeyDefinition. getReferencedColumns()List<ColumnDefinition>ForeignKeyDefinition. getReferencedColumns()The list of columns referenced by this foreign keyMethods in org.jooq.meta with parameters of type ColumnDefinition Modifier and Type Method Description voidDefaultRelations. addForeignKey(String foreignKeyName, TableDefinition foreignKeyTable, ColumnDefinition foreignKeyColumn, String uniqueKeyName, TableDefinition uniqueKeyTable)voidDefaultRelations. addForeignKey(String foreignKeyName, TableDefinition foreignKeyTable, ColumnDefinition foreignKeyColumn, String uniqueKeyName, TableDefinition uniqueKeyTable, boolean enforced)voidDefaultRelations. addForeignKey(String foreignKeyName, TableDefinition foreignKeyTable, ColumnDefinition foreignKeyColumn, String uniqueKeyName, TableDefinition uniqueKeyTable, ColumnDefinition uniqueKeyColumn, boolean enforced)voidDefaultRelations. addPrimaryKey(String keyName, TableDefinition table, ColumnDefinition column)voidDefaultRelations. addPrimaryKey(String keyName, TableDefinition table, ColumnDefinition column, boolean enforced)voidDefaultRelations. addUniqueKey(String keyName, TableDefinition table, ColumnDefinition column)voidDefaultRelations. addUniqueKey(String keyName, TableDefinition table, ColumnDefinition column, boolean enforced)List<ForeignKeyDefinition>DefaultRelations. getForeignKeys(ColumnDefinition column)List<ForeignKeyDefinition>Relations. getForeignKeys(ColumnDefinition column)Get a list of foreign keys for a given table, that the column participates in.List<UniqueKeyDefinition>DefaultRelations. getKeys(ColumnDefinition column)List<UniqueKeyDefinition>Relations. getKeys(ColumnDefinition column)Get a list of unique keys (including the primary key) for a given table, that the column participates in.UniqueKeyDefinitionDefaultRelations. getPrimaryKey(ColumnDefinition column)UniqueKeyDefinitionRelations. getPrimaryKey(ColumnDefinition column)Get the the primary for a given column, ornullif that column is not part of the primary key.List<UniqueKeyDefinition>DefaultRelations. getUniqueKeys(ColumnDefinition column)List<UniqueKeyDefinition>Relations. getUniqueKeys(ColumnDefinition column)Get a list of unique keys (not including the primary key) for a given table, that the column participates in.Constructors in org.jooq.meta with parameters of type ColumnDefinition Constructor Description DefaultEmbeddableColumnDefinition(EmbeddableDefinition container, String definingColumnName, ColumnDefinition referencingColumn, int position)DefaultIdentityDefinition(ColumnDefinition column)DefaultIndexColumnDefinition(IndexDefinition container, ColumnDefinition column, SortOrder sortOrder, int position) -
Uses of ColumnDefinition in org.jooq.meta.cubrid
Methods in org.jooq.meta.cubrid that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>CUBRIDTableDefinition. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.derby
Methods in org.jooq.meta.derby that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>DerbyTableDefinition. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.firebird
Methods in org.jooq.meta.firebird that return types with arguments of type ColumnDefinition Modifier and Type Method Description protected List<ColumnDefinition>FirebirdTableDefinition. getElements0()protected List<ColumnDefinition>FirebirdTableValuedFunction. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.h2
Methods in org.jooq.meta.h2 that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>H2TableDefinition. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.hsqldb
Methods in org.jooq.meta.hsqldb that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>HSQLDBTableDefinition. getElements0()List<ColumnDefinition>HSQLDBTableValuedFunction. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.mysql
Methods in org.jooq.meta.mysql that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>MySQLTableDefinition. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.postgres
Methods in org.jooq.meta.postgres that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>PostgresMaterializedViewDefinition. getElements0()List<ColumnDefinition>PostgresTableDefinition. getElements0()List<ColumnDefinition>PostgresTableValuedFunction. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.sqlite
Methods in org.jooq.meta.sqlite that return types with arguments of type ColumnDefinition Modifier and Type Method Description List<ColumnDefinition>SQLiteTableDefinition. getElements0() -
Uses of ColumnDefinition in org.jooq.meta.xml
Methods in org.jooq.meta.xml that return types with arguments of type ColumnDefinition Modifier and Type Method Description protected List<ColumnDefinition>XMLTableDefinition. getElements0()
-