All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.skycons.SkyIcon Maven / Gradle / Ivy

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy