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

com.thanglequoc.aqicalculator.SpecificAQIInformation 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;

import java.util.List;

/**
 * Object that hold a list of SpecificAQILevelMessage for a pollutant
 *
 * @author ThangLeQuoc
 */
class SpecificAQIInformation {
    
    private Pollutant pollutant;
    private List levelMessages;
    
    SpecificAQIInformation(Pollutant pollutant, List levelMessages) {
        this.pollutant = pollutant;
        this.levelMessages = levelMessages;
    }
    
    Pollutant getPollutant() {
        return pollutant;
    }
    
    List getLevelMessages() {
        return levelMessages;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy