
com.harium.suneidesis.concept.phenomenon.Weather Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
The newest version!
package com.harium.suneidesis.concept.phenomenon;
import com.harium.suneidesis.concept.Phenomenon;
public class Weather {
private static final Phenomenon SUNNY = weather("sunny");
private static final Phenomenon CLOUDY = weather("cloudy");
private static final Phenomenon RAINY = weather("rainy");
private static final Phenomenon SNOWY = weather("snowy");
private static final Phenomenon WINDY = weather("windy");
private static Phenomenon weather(String name) {
Phenomenon phenomenon = new Phenomenon(name);
phenomenon.setPhenomenonType(Phenomenon.TYPE_WEATHER);
return phenomenon;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy