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

com.jayway.jsonpath.internal.function.numeric.Min Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.jayway.jsonpath.internal.function.numeric;

/**
 * Defines the summation of a series of JSONArray numerical values
 *
 * Created by mattg on 6/26/15.
 */
public class Min extends AbstractAggregation {
    private Double min = Double.MAX_VALUE;

    @Override
    protected void next(Number value) {
        if (min > value.doubleValue()) {
            min = value.doubleValue();
        }
    }

    @Override
    protected Number getValue() {
        return min;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy