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

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

package org.rcsb.cif.schema.generator;

abstract class Col {
    private final String type;
    private final String description;

    Col(String type, String description) {
        this.type = type;
        this.description = description;
    }

    public String getType() {
        return type;
    }

    public String getDescription() {
        return description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy