
com.thanglequoc.aqicalculator.PollutantHelper 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;
class PollutantHelper {
static boolean isPollutantValidForNowCastAQICalculation(Pollutant pollutant) {
return (Pollutant.O3.equals(pollutant) || Pollutant.PM10.equals(pollutant)
|| Pollutant.PM25.equals(pollutant));
}
private PollutantHelper() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy