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

org.rcsb.cif.schema.mm.PdbxDatabaseRelated 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 PDBX_DATABASE_RELATED contain references to entries
 * that are related to the this entry.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class PdbxDatabaseRelated extends DelegatingCategory {
    public PdbxDatabaseRelated(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "db_name":
                return getDbName();
            case "details":
                return getDetails();
            case "db_id":
                return getDbId();
            case "content_type":
                return getContentType();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * The name of the database containing the related entry.
     * @return StrColumn
     */
    public StrColumn getDbName() {
        return delegate.getColumn("db_name", DelegatingStrColumn::new);
    }

    /**
     * A description of the related entry.
     * @return StrColumn
     */
    public StrColumn getDetails() {
        return delegate.getColumn("details", DelegatingStrColumn::new);
    }

    /**
     * The identifying code in the related database.
     * @return StrColumn
     */
    public StrColumn getDbId() {
        return delegate.getColumn("db_id", DelegatingStrColumn::new);
    }

    /**
     * The identifying content type of the related entry.
     * @return StrColumn
     */
    public StrColumn getContentType() {
        return delegate.getColumn("content_type", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy