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

com.thanglequoc.aqicalculator.SensitiveGroups 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 SensitiveGroups {

    private Pollutant pollutant;
    private String sensitiveGroups;

    SensitiveGroups(Pollutant pollutant, String sensitiveGroups) {
        this.pollutant = pollutant;
        this.sensitiveGroups = sensitiveGroups;
    }

    Pollutant getPollutant() {
        return pollutant;
    }

    String getSensitiveGroups() {
        return sensitiveGroups;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy