Example usage for java.time LocalDate toEpochDay

List of usage examples for java.time LocalDate toEpochDay

Introduction

In this page you can find the example usage for java.time LocalDate toEpochDay.

Prototype

@Override
    public long toEpochDay() 

Source Link

Usage

From source file:Main.java

public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);
    LocalDate b = LocalDate.of(2014, 7, 1);
    System.out.println(a.toEpochDay());
    System.out.println(b.toEpochDay());

}