Example usage for java.time LocalDateTime minus

List of usage examples for java.time LocalDateTime minus

Introduction

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

Prototype

@Override
public LocalDateTime minus(TemporalAmount amountToSubtract) 

Source Link

Document

Returns a copy of this date-time with the specified amount 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.minus(Period.ofDays(100));

    System.out.println(t);//from  w  w  w .j  av a2  s.  c  o  m
}