Example usage for java.time LocalDateTime minusHours

List of usage examples for java.time LocalDateTime minusHours

Introduction

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

Prototype

public LocalDateTime minusHours(long hours) 

Source Link

Document

Returns a copy of this LocalDateTime with the specified number of hours subtracted.

Usage

From source file:Main.java

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

    LocalDateTime t = a.minusHours(100);

    System.out.println(t);/*from   ww w.j ava  2  s. com*/
}