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

org.rcsb.cif.schema.mm.EmDepositorInfo 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 EM_DEPOSITOR INFO category record parameters for EM depositions
 * that are provided by the depositor
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class EmDepositorInfo extends DelegatingCategory {
    public EmDepositorInfo(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "entry_id":
                return getEntryId();
            case "em_method_selection":
                return getEmMethodSelection();
            case "molecular_description_flag":
                return getMolecularDescriptionFlag();
            default:
                return new DelegatingColumn(column);
        }
    }

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

    /**
     * The selected EM experimental method.
     * @return StrColumn
     */
    public StrColumn getEmMethodSelection() {
        return delegate.getColumn("em_method_selection", DelegatingStrColumn::new);
    }

    /**
     * Records whether molecular/polymer entities of the EM sample will be described.
     * @return StrColumn
     */
    public StrColumn getMolecularDescriptionFlag() {
        return delegate.getColumn("molecular_description_flag", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy