
com.thanglequoc.aqicalculator.SpecificAQILevelMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aqi-calculator Show documentation
Show all versions of aqi-calculator Show documentation
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