Back to project page android-appwidget-cirrus.
The source code is released under:
MIT License
If you think the Android project android-appwidget-cirrus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2014 Wayne D Grant (www.waynedgrant.com) Licensed under the MIT License */ // ww w . ja v a 2 s.c o m package com.waynedgrant.cirrus.units; public enum WindSpeedUnit { BEAUFORT_SCALE("Beaufort Scale (Bft)"), KILOMETRES_PER_HOUR("Kilometres per Hour (km/h)"), KNOTS("Knots (kts)"), METRES_PER_SECOND("Metres per Second (m/s)"), MILES_PER_HOUR("Miles per Hour (mph)"); private String description; WindSpeedUnit(String description) { this.description = description; } public String toString() { return description; } }