All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.querydsl.sql.ddl.KeyData Maven / Gradle / Ivy

There is a newer version: 6.9
Show newest version
/*
 *
 */
package com.querydsl.sql.ddl;

import java.util.List;

/**
 * Common interface for ForeignKeyData and InverseForeignKeyData
 *
 * @author tiwe
 */
public interface KeyData {

  String getName();

  String getTable();

  List getForeignColumns();

  List getParentColumns();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy