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

org.rcsb.cif.schema.mm.PdbxNaStructKeywds Maven / Gradle / Ivy

package org.rcsb.cif.schema.mm;

import org.rcsb.cif.model.*;
import org.rcsb.cif.schema.*;

import javax.annotation.Generated;

/**
 * Data items in the PDBX_NA_STRUCT_KEYWDS category record give details
 * about structural features of the NA.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class PdbxNaStructKeywds extends DelegatingCategory {
    public PdbxNaStructKeywds(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "entry_id":
                return getEntryId();
            case "conformation_type":
                return getConformationType();
            case "strand_description":
                return getStrandDescription();
            case "special_feature":
                return getSpecialFeature();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * This data item is a pointer to _entry.id in the ENTRY category.
     * @return StrColumn
     */
    public StrColumn getEntryId() {
        return delegate.getColumn("entry_id", DelegatingStrColumn::new);
    }

    /**
     * Provides overall idea about conformation type of NA.  Also,
     * it identifies tRNAs by assigning a 'T' here.
     * @return StrColumn
     */
    public StrColumn getConformationType() {
        return delegate.getColumn("conformation_type", DelegatingStrColumn::new);
    }

    /**
     * Gives general structural description of NA.
     * @return StrColumn
     */
    public StrColumn getStrandDescription() {
        return delegate.getColumn("strand_description", DelegatingStrColumn::new);
    }

    /**
     * Describes special features of NA.
     * @return StrColumn
     */
    public StrColumn getSpecialFeature() {
        return delegate.getColumn("special_feature", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy