Example usage for org.joda.time.tz Provider interface-usage

List of usage examples for org.joda.time.tz Provider interface-usage

Introduction

In this page you can find the example usage for org.joda.time.tz Provider interface-usage.

Usage

From source file com.byoutline.secretsauce.utils.JdkBasedTimeZoneProvider.java

/**
 * A Joda time zone provider based on the JVM's TimeZone implementation, instead of Joda's Olson database.
 * <p/>
 * This can reduce Joda's initialization time (during class loading) by several seconds on Android.
 * To wire it up, add this to your Application subclass's onCreate():
 * {@code System.setProperty("org.joda.time.DateTimeZone.Provider", JdkBasedTimeZoneProvider.class.getCanonicalName());}

From source file com.metinkale.prayerapp.utils.AndroidTimeZoneProvider.java

/**
 * Created by metin on 13.02.2017.
 */
public class AndroidTimeZoneProvider implements Provider {
    @NonNull
    private SimpleArrayMap<String, WeakReference<DateTimeZone>> cache = new SimpleArrayMap<>();

From source file net.naonedbus.provider.impl.FastDateTimeZoneProvider.java

/**
 * @author romain.guefveneu
 * 
 */
public class FastDateTimeZoneProvider implements Provider {
    public static final Set<String> AVAILABLE_IDS = new HashSet<String>();

From source file org.solovyev.common.datetime.FastDateTimeZoneProvider.java

/**
 * User: serso
 * Date: 4/29/12
 * Time: 9:36 PM
 */
public class FastDateTimeZoneProvider implements Provider {