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

org.protempa.MinMaxGapBetweenValues Maven / Gradle / Ivy

There is a newer version: 5.2-Alpha-2
Show newest version
/*
 * #%L
 * Protempa Framework
 * %%
 * Copyright (C) 2012 - 2013 Emory University
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package org.protempa;

import java.io.Serializable;

import org.protempa.proposition.PrimitiveParameter;
import org.protempa.proposition.value.Unit;

final class MinMaxGapBetweenValues implements Serializable {

    private static final long serialVersionUID = -8071552755205112189L;
    
    private int minimumGapBetweenValues;
    private Unit minimumGapBetweenValuesUnits;
    private Integer maximumGapBetweenValues;
    private Unit maximumGapBetweenValuesUnits;
    private MinMaxGapFunction gapFunction;

    Integer getMinimumGapBetweenValues() {
        return this.minimumGapBetweenValues;
    }

    Unit getMinimumGapBetweenValuesUnits() {
        return this.minimumGapBetweenValuesUnits;
    }

    void setMinimumGapBetweenValues(Integer minimumGapBetweenValues) {
        if (minimumGapBetweenValues == null
                || minimumGapBetweenValues.compareTo(0) < 0) {
            this.minimumGapBetweenValues = 0;
        } else {
            this.minimumGapBetweenValues = minimumGapBetweenValues;
        }
    }

    void setMinimumGapBetweenValuesUnits(Unit units) {
        this.minimumGapBetweenValuesUnits = units;
    }

    Integer getMaximumGapBetweenValues() {
        return this.maximumGapBetweenValues;
    }

    Unit getMaximumGapBetweenValuesUnits() {
        return this.maximumGapBetweenValuesUnits;
    }

    void setMaximumGapBetweenValues(Integer maximumGapBetweenValues) {
        if (maximumGapBetweenValues == null) {
            this.maximumGapBetweenValues = null;
        } else if (maximumGapBetweenValues.compareTo(0) < 0) {
            this.maximumGapBetweenValues = 0;
        } else {
            this.maximumGapBetweenValues = maximumGapBetweenValues;
        }
    }

    void setMaximumGapBetweenValuesUnits(Unit units) {
        this.maximumGapBetweenValuesUnits = units;
    }

    boolean satisfiesGap(PrimitiveParameter pp1, PrimitiveParameter pp2) {
        if (this.gapFunction == null) {
            this.gapFunction = new MinMaxGapFunction(
                    this.minimumGapBetweenValues,
                    this.minimumGapBetweenValuesUnits,
                    this.maximumGapBetweenValues,
                    this.maximumGapBetweenValuesUnits);
        }
        return this.gapFunction.execute(pp1.getInterval(), pp2.getInterval());
    }

    protected String debugMessage() {
        StringBuilder buffer = new StringBuilder();
        buffer.append("minimumGapBetweenValues=" + this.minimumGapBetweenValues
                + " " + this.minimumGapBetweenValuesUnits + ", ");
        buffer.append("maximumGapBetweenValues=" + this.maximumGapBetweenValues
                + this.maximumGapBetweenValuesUnits + ", ");
        return buffer.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy