Back to project page simple-dash.
The source code is released under:
MIT License
If you think the Android project simple-dash listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.bmdtech.simpledash.utils; //w w w.java 2 s .c o m public enum SpeedUnit { METRIC(3.6f), IMPERIAL(2.23694f); /** * Conversion factor from m/s to speed unit */ private float conversionFactor; SpeedUnit(float conversionFactor) { this.conversionFactor = conversionFactor; } public float getConversionFactor() { return conversionFactor; } }