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

com.thanglequoc.aqicalculator.PollutantConcentration Maven / Gradle / Ivy

Go to download

AQI Calculator give the detail result from AQI calculation. It also supports NowCast

The newest version!
package com.thanglequoc.aqicalculator;

class PollutantConcentration {
    
    private double min;
    private double max;
    private Index index;
    
    PollutantConcentration(Index index, double min, double max) {
        this.index = index;
        this.min = min;
        this.max = max;
    }
    
    double getMinConcentration() {
        return min;
    }
    
    double getMaxConcentration() {
        return max;
    }
    
    Index getIndex() {
        return index;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy