Package org.sql2o.converters.joda

Examples of org.sql2o.converters.joda.LocalDateConverter


        mapToFill.put(UUID.class, new UUIDConverter());

        if (FeatureDetector.isJodaTimeAvailable()) {
            mapToFill.put(DateTime.class, new DateTimeConverter());
            mapToFill.put(LocalTime.class, new LocalTimeConverter());
            mapToFill.put(LocalDate.class, new LocalDateConverter());
        }
    }
View Full Code Here

TOP

Related Classes of org.sql2o.converters.joda.LocalDateConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.