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

org.rcsb.cif.schema.mm.EmSpecimen 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 EMD_SPECIMEN category record details
 * about specimens prepared for imaging by electron microscopy.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class EmSpecimen extends DelegatingCategory {
    public EmSpecimen(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "concentration":
                return getConcentration();
            case "details":
                return getDetails();
            case "embedding_applied":
                return getEmbeddingApplied();
            case "experiment_id":
                return getExperimentId();
            case "id":
                return getId();
            case "shadowing_applied":
                return getShadowingApplied();
            case "staining_applied":
                return getStainingApplied();
            case "vitrification_applied":
                return getVitrificationApplied();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * The concentration (in milligrams per milliliter, mg/ml)
     * of the complex in the sample.
     * @return FloatColumn
     */
    public FloatColumn getConcentration() {
        return delegate.getColumn("concentration", DelegatingFloatColumn::new);
    }

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

    /**
     * 'YES' indicates that the specimen has been embedded.
     * @return StrColumn
     */
    public StrColumn getEmbeddingApplied() {
        return delegate.getColumn("embedding_applied", DelegatingStrColumn::new);
    }

    /**
     * Pointer to _em_experiment.id.
     * @return StrColumn
     */
    public StrColumn getExperimentId() {
        return delegate.getColumn("experiment_id", DelegatingStrColumn::new);
    }

    /**
     * PRIMARY KEY
     * @return StrColumn
     */
    public StrColumn getId() {
        return delegate.getColumn("id", DelegatingStrColumn::new);
    }

    /**
     * 'YES' indicates that the specimen has been shadowed.
     * @return StrColumn
     */
    public StrColumn getShadowingApplied() {
        return delegate.getColumn("shadowing_applied", DelegatingStrColumn::new);
    }

    /**
     * 'YES' indicates that the specimen has been stained.
     * @return StrColumn
     */
    public StrColumn getStainingApplied() {
        return delegate.getColumn("staining_applied", DelegatingStrColumn::new);
    }

    /**
     * 'YES' indicates that the specimen was vitrified by cryopreservation.
     * @return StrColumn
     */
    public StrColumn getVitrificationApplied() {
        return delegate.getColumn("vitrification_applied", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy