Example usage for org.joda.time LocalDate toDateMidnight

List of usage examples for org.joda.time LocalDate toDateMidnight

Introduction

In this page you can find the example usage for org.joda.time LocalDate toDateMidnight.

Prototype

@Deprecated
public DateMidnight toDateMidnight(DateTimeZone zone) 

Source Link

Document

Converts this LocalDate to a DateMidnight.

Usage

From source file:com.google.walkaround.wave.server.googleimport.DaysSinceEpoch.java

License:Open Source License

public static long fromLocalDate(LocalDate d) {
    return fromDateMidnight(d.toDateMidnight(DateTimeZone.UTC));
}