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

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

package org.rcsb.cif.schema.mm;

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

import javax.annotation.Generated;

/**
 * The information in this category is exclusively used to store
 * the HET records of a PDB file.  This record will be generated
 * by the PROGRAM.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class PdbxNonstandardList extends DelegatingCategory {
    public PdbxNonstandardList(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "id":
                return getId();
            case "auth_asym_id":
                return getAuthAsymId();
            case "auth_seq_id":
                return getAuthSeqId();
            case "label_asym_id":
                return getLabelAsymId();
            case "label_seq_num":
                return getLabelSeqNum();
            case "label_seq_id":
                return getLabelSeqId();
            case "ins_code":
                return getInsCode();
            case "number_atoms_nh":
                return getNumberAtomsNh();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * The value of _pdbx_nonstandard_list.id must uniquely identify each item in
     * the PDBX_NONSTANDARD_LIST list.
     * 
     * For protein polymer entities, this is the three-letter code for
     * amino acids.
     * 
     * For nucleic acid polymer entities, this is the one-letter code
     * for the bases.
     * @return StrColumn
     */
    public StrColumn getId() {
        return delegate.getColumn("id", DelegatingStrColumn::new);
    }

    /**
     * Chain id of the nonstandard group used by the author.
     * @return StrColumn
     */
    public StrColumn getAuthAsymId() {
        return delegate.getColumn("auth_asym_id", DelegatingStrColumn::new);
    }

    /**
     * Residue number of the nonstandard group used by the
     * author.
     * @return StrColumn
     */
    public StrColumn getAuthSeqId() {
        return delegate.getColumn("auth_seq_id", DelegatingStrColumn::new);
    }

    /**
     * Chain ID of het group.
     * @return StrColumn
     */
    public StrColumn getLabelAsymId() {
        return delegate.getColumn("label_asym_id", DelegatingStrColumn::new);
    }

    /**
     * Residue number of het group.
     * @return StrColumn
     */
    public StrColumn getLabelSeqNum() {
        return delegate.getColumn("label_seq_num", DelegatingStrColumn::new);
    }

    /**
     * Residue id of het group.
     * @return IntColumn
     */
    public IntColumn getLabelSeqId() {
        return delegate.getColumn("label_seq_id", DelegatingIntColumn::new);
    }

    /**
     * Insertion code of het group.
     * @return StrColumn
     */
    public StrColumn getInsCode() {
        return delegate.getColumn("ins_code", DelegatingStrColumn::new);
    }

    /**
     * The number of non-hydrogen atoms in the het group.
     * @return IntColumn
     */
    public IntColumn getNumberAtomsNh() {
        return delegate.getColumn("number_atoms_nh", DelegatingIntColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy