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

org.db2code.rawmodel.RawTable Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package org.db2code.rawmodel;

import java.util.ArrayList;
import java.util.Collection;
import lombok.Data;

@Data
public class RawTable extends AbstractRawItem {
    private String tableType;
    private String remarks;
    private String typeCat;
    private String typeSchem;
    private String typeName;
    private String selfReferencingColName;
    private String refGeneration;
    private Collection columns = new ArrayList<>();

    private Collection primaryKey = new ArrayList<>();
    private Collection foreignKeys;

    @Data
    public static class RawPrimaryKey extends AbstractRawItem {
        private String columnName;
        private String keySeq;
        private String pkName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy