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

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

/**
 * Object to store information for a specific pollutant code at different AQI
 * level
 *
 * @author ThangLeQuoc
 */
class SpecificAQILevelMessage {
    
    private Index index;
    private String category;
    private String healthEffectsStatements;
    private String cautionaryStatements;
    
    SpecificAQILevelMessage(Index index, String category, String healthEffectsStatements, String cautionaryStatements) {
        this.index = index;
        this.category = category;
        this.healthEffectsStatements = healthEffectsStatements;
        this.cautionaryStatements = cautionaryStatements;
    }
    
    Index getIndex() {
        return index;
    }
    
    String getCategory() {
        return category;
    }
    
    String getHealthEffectsStatements() {
        return healthEffectsStatements;
    }
    
    String getCautionaryStatements() {
        return cautionaryStatements;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy