Android Open Source - worldclockwidget Speed Format






From Project

Back to project page worldclockwidget.

License

The source code is released under:

GNU General Public License

If you think the Android project worldclockwidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2014  Armin Hberling//www.ja  va  2 s .c  om
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 */

package ch.corten.aha.worldclock;

import java.text.MessageFormat;

public enum SpeedFormat {
    KiloMetersPerHour("kmh", "{0,number,#} km/h") {
        @Override
        protected double fromKmh(double speed) {
            return speed;
        }
    },
    MilesPerHour("mph", "{0,number,#} mph") {
        @Override
        protected double fromKmh(double speed) {
            return Math.round(speed * MILES_PER_KM);
        }
    },
    MetersPerSecond("ms", "{0,number,#} m/s") {
        @Override
        protected double fromKmh(double speed) {
            return Math.round(speed / KMH_PER_MS);
        }
    },
    Beaufort("beaufort", "{0,number,#} Bft") {
        @Override
        protected double fromKmh(double speed) {
            double msSpeed = speed / KMH_PER_MS;
            // CHECKSTYLE IGNORE MagicNumberCheck
            if (msSpeed < 0.3) {
                return 0;
            } else if (msSpeed <= 1.5) {
                return 1;
            } else if (msSpeed <= 3.3) {
                return 2;
            } else if (msSpeed <= 5.5) {
                return 3;
            } else if (msSpeed <= 8.0) {
                return 4;
            } else if (msSpeed <= 10.8) {
                return 5;
            } else if (msSpeed <= 13.9) {
                return 6;
            } else if (msSpeed <= 17.2) {
                return 7;
            } else if (msSpeed <= 20.7) {
                return 8;
            } else if (msSpeed <= 24.5) {
                return 9;
            } else if (msSpeed <= 28.4) {
                return 10;
            } else if (msSpeed <= 32.6) {
                return 11;
            } else {
                return 12;
            }
            // CHECKSTYLE END IGNORE MagicNumberCheck
        }
    };

    private static final double KMH_PER_MS = 3.6;
    private static final double MILES_PER_KM = 0.621371192;

    private final String mId;
    private final String mFormat;

    SpeedFormat(String id, String format) {
        mId = id;
        mFormat = format;
    }

    protected abstract double fromKmh(double speed);

    public String getId() {
        return mId;
    }

    public String format(double speedInKmh) {
        return MessageFormat.format(mFormat, fromKmh(speedInKmh));
    }

    public static SpeedFormat fromId(String id) {
        for (SpeedFormat sf : SpeedFormat.values()) {
            if (sf.mId.equals(id)) {
                return sf;
            }
        }
        throw new IllegalArgumentException("Unknown SpeedFormat id: " + id);
    }
}




Java Source Code List

ch.corten.aha.preference.AboutPreference.java
ch.corten.aha.preference.MailPreference.java
ch.corten.aha.widget.CapitalizingTextView.java
ch.corten.aha.widget.CheckableFrameLayout.java
ch.corten.aha.widget.DigitalClock.java
ch.corten.aha.widget.PauseListener.java
ch.corten.aha.widget.PauseSource.java
ch.corten.aha.widget.RemoteViewUtil.java
ch.corten.aha.worldclock.AbstractWeatherWidgetProvider.java
ch.corten.aha.worldclock.AddClockActivity.java
ch.corten.aha.worldclock.BindHelper.java
ch.corten.aha.worldclock.ClockWidgetProvider.java
ch.corten.aha.worldclock.ClockWidgetSystemReceiver.java
ch.corten.aha.worldclock.EditClockActivity.java
ch.corten.aha.worldclock.MyApp.java
ch.corten.aha.worldclock.SpeedFormat.java
ch.corten.aha.worldclock.TimeZoneInfo.java
ch.corten.aha.worldclock.UpdateWeatherService.java
ch.corten.aha.worldclock.WeatherIcons.java
ch.corten.aha.worldclock.WeatherWidgetProvider.java
ch.corten.aha.worldclock.WeatherWidgetService.java
ch.corten.aha.worldclock.WeatherWidget.java
ch.corten.aha.worldclock.WorldClockActivity.java
ch.corten.aha.worldclock.WorldClockPreferenceActivity.java
ch.corten.aha.worldclock.WorldClockWidgetProvider.java
ch.corten.aha.worldclock.WorldClockWidgetService.java
ch.corten.aha.worldclock.compatibility.CompatWeatherWidgetProvider.java
ch.corten.aha.worldclock.compatibility.CompatWeatherWidgetService.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x1.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x2.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x3.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x4.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x1.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x2.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x3.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x4.java
ch.corten.aha.worldclock.provider.CityDatabase.java
ch.corten.aha.worldclock.provider.WorldClockContentProvider.java
ch.corten.aha.worldclock.provider.WorldClockDatabase.java
ch.corten.aha.worldclock.provider.WorldClock.java
ch.corten.aha.worldclock.weather.AbstractObservation.java
ch.corten.aha.worldclock.weather.AndroidWeatherServiceFactory.java
ch.corten.aha.worldclock.weather.WeatherObservation.java
ch.corten.aha.worldclock.weather.WeatherServiceFactory.java
ch.corten.aha.worldclock.weather.WeatherService.java
ch.corten.aha.worldclock.weather.msn.MsnWeatherService.java
ch.corten.aha.worldclock.weather.owm.OwmWeatherService.java
ch.corten.aha.worldclock.weather.owm.WeatherConditionPriority.java
ch.corten.aha.worldclock.weather.owm.WeatherConditionType.java
ch.corten.aha.worldclock.weather.yahoo.PlaceFinderService.java
ch.corten.aha.worldclock.weather.yahoo.WoeidCache.java
ch.corten.aha.worldclock.weather.yahoo.YahooWeatherService.java
net.margaritov.preference.colorpicker.AlphaPatternDrawable.java
net.margaritov.preference.colorpicker.ColorPickerDialog.java
net.margaritov.preference.colorpicker.ColorPickerPanelView.java
net.margaritov.preference.colorpicker.ColorPickerPreference.java
net.margaritov.preference.colorpicker.ColorPickerView.java