
com.thanglequoc.aqicalculator.GeneralAQIInformation 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 map to json file, contain an index and it corresponding category
* and message
*
* @author ThangLeQuoc
*/
class GeneralAQIInformation {
private Index index;
private String category;
private String meaning;
private String color;
GeneralAQIInformation(Index index, String category, String message, String color) {
this.index = index;
this.category = category;
this.meaning = message;
this.color = color;
}
Index getIndex() {
return index;
}
String getCategory() {
return category;
}
String getMeaning() {
return meaning;
}
String getColor() {
return color;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy