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

org.rcsb.cif.schema.mm.EmEntityAssemblyMolwt 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 this category record details about the molecular weight of
 * an assembly component of the sample.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class EmEntityAssemblyMolwt extends DelegatingCategory {
    public EmEntityAssemblyMolwt(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "entity_assembly_id":
                return getEntityAssemblyId();
            case "experimental_flag":
                return getExperimentalFlag();
            case "id":
                return getId();
            case "units":
                return getUnits();
            case "value":
                return getValue();
            case "method":
                return getMethod();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * A reference to em_entity_assembly.id which uniquely identifies one sample or sample subcomponent of the imaged specimen.
     * @return StrColumn
     */
    public StrColumn getEntityAssemblyId() {
        return delegate.getColumn("entity_assembly_id", DelegatingStrColumn::new);
    }

    /**
     * Identifies whether the given molecular weight was derived experimentally.
     * @return StrColumn
     */
    public StrColumn getExperimentalFlag() {
        return delegate.getColumn("experimental_flag", DelegatingStrColumn::new);
    }

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

    /**
     * Molecular weight units.
     * @return StrColumn
     */
    public StrColumn getUnits() {
        return delegate.getColumn("units", DelegatingStrColumn::new);
    }

    /**
     * The molecular weight of the sample or sample subcomponent
     * @return FloatColumn
     */
    public FloatColumn getValue() {
        return delegate.getColumn("value", DelegatingFloatColumn::new);
    }

    /**
     * The method used to determine the molecular weight.
     * @return StrColumn
     */
    public StrColumn getMethod() {
        return delegate.getColumn("method", DelegatingStrColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy