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

org.rcsb.cif.schema.generator.Table Maven / Gradle / Ivy

package org.rcsb.cif.schema.generator;

import java.util.Map;
import java.util.Set;

class Table {
    private final String description;
    private final Set categoryKeyNames;
    private final Map columns;

    Table(String description, Set categoryKeyNames, Map columns) {
        this.description = description;
        this.categoryKeyNames = categoryKeyNames;
        this.columns = columns;
    }

    public String getDescription() {
        return description;
    }

    public Set getCategoryKeyNames() {
        return categoryKeyNames;
    }

    public Map getColumns() {
        return columns;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy