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

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

package org.rcsb.cif.schema.generator;

import java.util.List;

class EnumCol extends Col {
    private final List values;
    private final String subType;

    EnumCol(List values, String subType, String description) {
        super("enum", description);
        this.values = values;
        this.subType = subType;
    }

    public List getValues() {
        return values;
    }

    public String getSubType() {
        return subType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy