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

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

package org.rcsb.cif.schema.mm;

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

import javax.annotation.Generated;

/**
 * Gives information about what kind of coordinates are available.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class PdbxCoord extends DelegatingCategory {
    public PdbxCoord(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "entry_id":
                return getEntryId();
            case "chain_atoms_Y_P":
                return getChainAtomsYP();
            case "hydrogen_atoms_Y_N":
                return getHydrogenAtomsYN();
            case "solvent_atoms_Y_N":
                return getSolventAtomsYN();
            case "structure_factors_Y_N":
                return getStructureFactorsYN();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * The entry identifier.
     * @return StrColumn
     */
    public StrColumn getEntryId() {
        return delegate.getColumn("entry_id", DelegatingStrColumn::new);
    }

    /**
     * Gives information if the coordinates for the main chain atoms
     * are available.
     * @return StrColumn
     */
    public StrColumn getChainAtomsYP() {
        return delegate.getColumn("chain_atoms_Y_P", DelegatingStrColumn::new);
    }

    /**
     * Gives information if the coordinates for hydrogen atoms
     * are available.
     * @return StrColumn
     */
    public StrColumn getHydrogenAtomsYN() {
        return delegate.getColumn("hydrogen_atoms_Y_N", DelegatingStrColumn::new);
    }

    /**
     * Gives information if the coordinates for solvent atoms
     * are available.
     * @return StrColumn
     */
    public StrColumn getSolventAtomsYN() {
        return delegate.getColumn("solvent_atoms_Y_N", DelegatingStrColumn::new);
    }

    /**
     * Gives information if the structure factors for this entry
     * are available.
     * @return StrColumn
     */
    public StrColumn getStructureFactorsYN() {
        return delegate.getColumn("structure_factors_Y_N", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy