
com.jirvan.dbreflect.Table Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ji-utils Show documentation
Show all versions of ji-utils Show documentation
A general java utilities library
The newest version!
package com.jirvan.dbreflect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.List;
public class Table {
public String tableName;
public String schemaName;
public String catalogName;
public String remarks; // explanatory comment on the table
public List columns;
public List foreignKeys;
public List referencingForeignKeys;
public static class ForeignKey {
public List columnNames;
public String referencedTableName;
public List referencedColumnNames;
}
public static class ReferencingForeignKey {
@JsonIgnore public Boolean isFromAnotherSchema;
public String referencingTableName;
public List referencingColumnNames;
public List columnNames;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy