Example usage for java.time LocalDateTime getLong

List of usage examples for java.time LocalDateTime getLong

Introduction

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

Prototype

@Override
public long getLong(TemporalField field) 

Source Link

Document

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

Usage

From source file:Main.java

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

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