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

org.rcsb.cif.schema.mm.IhmDerivedAngleRestraint 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 IHM_DERIVED_ANGLE_RESTRAINT category records the
 * list of angle restraints used in the integrative modeling experiment.
 * These angle restraints may be derived from various kinds of experiments.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class IhmDerivedAngleRestraint extends DelegatingCategory {
    public IhmDerivedAngleRestraint(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "id":
                return getId();
            case "group_id":
                return getGroupId();
            case "feature_id_1":
                return getFeatureId1();
            case "feature_id_2":
                return getFeatureId2();
            case "feature_id_3":
                return getFeatureId3();
            case "group_conditionality":
                return getGroupConditionality();
            case "angle_lower_limit":
                return getAngleLowerLimit();
            case "angle_upper_limit":
                return getAngleUpperLimit();
            case "angle_lower_limit_esd":
                return getAngleLowerLimitEsd();
            case "angle_upper_limit_esd":
                return getAngleUpperLimitEsd();
            case "probability":
                return getProbability();
            case "restraint_type":
                return getRestraintType();
            case "angle_threshold_mean":
                return getAngleThresholdMean();
            case "angle_threshold_esd":
                return getAngleThresholdEsd();
            case "dataset_list_id":
                return getDatasetListId();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * A unique identifier for the derived angle restraint.
     * @return IntColumn
     */
    public IntColumn getId() {
        return delegate.getColumn("id", DelegatingIntColumn::new);
    }

    /**
     * An identifier to group the angle restraints.
     * This can be the same as the _ihm_derived_angle_restraint.id in case
     * the restraints are not grouped.
     * @return IntColumn
     */
    public IntColumn getGroupId() {
        return delegate.getColumn("group_id", DelegatingIntColumn::new);
    }

    /**
     * The feature identifier for the first partner in the angle restraint.
     * This data item is a pointer to _ihm_feature_list.feature_id in the
     * IHM_FEATURE_LIST category.
     * @return IntColumn
     */
    public IntColumn getFeatureId1() {
        return delegate.getColumn("feature_id_1", DelegatingIntColumn::new);
    }

    /**
     * The feature identifier for the second partner in the angle restraint.
     * This data item is a pointer to _ihm_feature_list.feature_id in the
     * IHM_FEATURE_LIST category.
     * @return IntColumn
     */
    public IntColumn getFeatureId2() {
        return delegate.getColumn("feature_id_2", DelegatingIntColumn::new);
    }

    /**
     * The feature identifier for the third partner in the angle restraint.
     * This data item is a pointer to _ihm_feature_list.feature_id in the
     * IHM_FEATURE_LIST category.
     * @return IntColumn
     */
    public IntColumn getFeatureId3() {
        return delegate.getColumn("feature_id_3", DelegatingIntColumn::new);
    }

    /**
     * If a group of angles are restrained together, this data item defines
     * the conditionality based on which the restraint is applied in the modeling.
     * @return StrColumn
     */
    public StrColumn getGroupConditionality() {
        return delegate.getColumn("group_conditionality", DelegatingStrColumn::new);
    }

    /**
     * The lower limit to the threshold applied to this angle restraint
     * in the integrative modeling task.
     * @return FloatColumn
     */
    public FloatColumn getAngleLowerLimit() {
        return delegate.getColumn("angle_lower_limit", DelegatingFloatColumn::new);
    }

    /**
     * The upper limit to the threshold applied to this angle restraint
     * in the integrative modeling task.
     * @return FloatColumn
     */
    public FloatColumn getAngleUpperLimit() {
        return delegate.getColumn("angle_upper_limit", DelegatingFloatColumn::new);
    }

    /**
     * The estimated standard deviation of the lower limit angle threshold applied.
     * @return FloatColumn
     */
    public FloatColumn getAngleLowerLimitEsd() {
        return delegate.getColumn("angle_lower_limit_esd", DelegatingFloatColumn::new);
    }

    /**
     * The estimated standard deviation of the upper limit angle threshold applied.
     * @return FloatColumn
     */
    public FloatColumn getAngleUpperLimitEsd() {
        return delegate.getColumn("angle_upper_limit_esd", DelegatingFloatColumn::new);
    }

    /**
     * The real number that indicates the probability that the angle restraint
     * is correct. This number should fall between 0.0 and 1.0.
     * @return FloatColumn
     */
    public FloatColumn getProbability() {
        return delegate.getColumn("probability", DelegatingFloatColumn::new);
    }

    /**
     * The type of angle restraint applied.
     * @return StrColumn
     */
    public StrColumn getRestraintType() {
        return delegate.getColumn("restraint_type", DelegatingStrColumn::new);
    }

    /**
     * The angle threshold mean applied to the restraint.
     * @return FloatColumn
     */
    public FloatColumn getAngleThresholdMean() {
        return delegate.getColumn("angle_threshold_mean", DelegatingFloatColumn::new);
    }

    /**
     * The estimated standard deviation of the angle threshold applied to the restraint.
     * @return FloatColumn
     */
    public FloatColumn getAngleThresholdEsd() {
        return delegate.getColumn("angle_threshold_esd", DelegatingFloatColumn::new);
    }

    /**
     * Identifier to the input data from which the angle restraint is derived.
     * This data item is a pointer to the _ihm_dataset_list.id in the
     * IHM_DATASET_LIST category.
     * @return IntColumn
     */
    public IntColumn getDatasetListId() {
        return delegate.getColumn("dataset_list_id", DelegatingIntColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy