Uses of Class
org.eclipse.persistence.tools.schemaframework.ForeignKeyConstraint
-
Packages that use ForeignKeyConstraint Package Description org.eclipse.persistence.internal.helper org.eclipse.persistence.sessions.factories org.eclipse.persistence.tools.schemaframework -
-
Uses of ForeignKeyConstraint in org.eclipse.persistence.internal.helper
Fields in org.eclipse.persistence.internal.helper with type parameters of type ForeignKeyConstraint Modifier and Type Field Description protected Map<String,ForeignKeyConstraint>DatabaseTable. foreignKeyConstraintsJPA 2.1 Foreign key specification dataMethods in org.eclipse.persistence.internal.helper that return ForeignKeyConstraint Modifier and Type Method Description ForeignKeyConstraintDatabaseTable. getForeignKeyConstraint(String name)Methods in org.eclipse.persistence.internal.helper that return types with arguments of type ForeignKeyConstraint Modifier and Type Method Description Map<String,ForeignKeyConstraint>DatabaseTable. getForeignKeyConstraints()Methods in org.eclipse.persistence.internal.helper with parameters of type ForeignKeyConstraint Modifier and Type Method Description voidDatabaseTable. addForeignKeyConstraint(ForeignKeyConstraint foreignKeyConstraint) -
Uses of ForeignKeyConstraint in org.eclipse.persistence.sessions.factories
Methods in org.eclipse.persistence.sessions.factories with parameters of type ForeignKeyConstraint Modifier and Type Method Description protected voidTableCreatorClassGenerator. addForeignKeyLines(ForeignKeyConstraint foreignKey, NonreflectiveMethodDefinition method) -
Uses of ForeignKeyConstraint in org.eclipse.persistence.tools.schemaframework
Fields in org.eclipse.persistence.tools.schemaframework with type parameters of type ForeignKeyConstraint Modifier and Type Field Description protected Map<String,ForeignKeyConstraint>TableDefinition. foreignKeyMapMethods in org.eclipse.persistence.tools.schemaframework that return ForeignKeyConstraint Modifier and Type Method Description protected ForeignKeyConstraintTableDefinition. buildForeignKeyConstraint(List<String> fkFieldNames, List<String> pkFieldNames, TableDefinition targetTable, DatabasePlatform platform)Build a foreign key constraint.protected ForeignKeyConstraintTableDefinition. buildForeignKeyConstraint(FieldDefinition field, DatabasePlatform platform)Build a foreign key constraint using FieldDefinition.getForeignKeyFieldName().Methods in org.eclipse.persistence.tools.schemaframework that return types with arguments of type ForeignKeyConstraint Modifier and Type Method Description Map<String,ForeignKeyConstraint>TableDefinition. getForeignKeyMap()INTERNAL:Collection<ForeignKeyConstraint>TableDefinition. getForeignKeys()PUBLIC: Returns the ForeignKeyConstraint list.Methods in org.eclipse.persistence.tools.schemaframework with parameters of type ForeignKeyConstraint Modifier and Type Method Description voidTableDefinition. addForeignKeyConstraint(ForeignKeyConstraint foreignKey)PUBLIC: Add a foreign key constraint to the table.WriterTableDefinition. buildConstraintCreationWriter(AbstractSession session, ForeignKeyConstraint foreignKey, Writer writer)INTERNAL: Return the alter table statement to add the constraints.WriterTableDefinition. buildConstraintDeletionWriter(AbstractSession session, ForeignKeyConstraint foreignKey, Writer writer)INTERNAL: Return the alter table statement to drop the constraints.Method parameters in org.eclipse.persistence.tools.schemaframework with type arguments of type ForeignKeyConstraint Modifier and Type Method Description voidTableDefinition. setForeignKeyMap(Map<String,ForeignKeyConstraint> foreignKeyMap)INTERNAL:voidTableDefinition. setForeignKeys(List<ForeignKeyConstraint> foreignKeys)PUBLIC: Set the ForeignKeyConstraint list.voidTableDefinition. setUserDefinedForeignKeyConstraints(Map<String,ForeignKeyConstraint> foreignKeyConstraints)PUBLIC: Set the foreign key constraints for this table.
-