com.jwebmp.plugins.skycons.SkyIcon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-skycons Show documentation
Show all versions of jwebmp-skycons Show documentation
The JWebMP implementation for SkyCons
The newest version!
package com.jwebmp.plugins.skycons;
import static com.jwebmp.core.utilities.StaticStrings.*;
/**
* The actual icon to display
*/
public enum SkyIcon
{
Clear_Day,
Clear_Night,
Rain,
Snow,
Sleet,
Wind,
Fog,
Cloudy,
Partly_Cloudy_Day,
Partly_Cloudy_Night,
;
@Override
public String toString()
{
return name().toLowerCase()
.replace(CHAR_UNDERSCORE, CHAR_DASH);
}
}