Example usage for java.time LocalDate getLong

List of usage examples for java.time LocalDate getLong

Introduction

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

Prototype

@Override
public long getLong(TemporalField field) 

Source Link

Document

Gets the value of the specified field from this date as a long .

Usage

From source file:Main.java

public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.getLong(ChronoField.DAY_OF_YEAR));
}