Example usage for java.time Duration negated

List of usage examples for java.time Duration negated

Introduction

In this page you can find the example usage for java.time Duration negated.

Prototype

public Duration negated() 

Source Link

Document

Returns a copy of this duration with the length negated.

Usage

From source file:Main.java

public static void main(String[] args) {
    Duration duration = Duration.between(LocalTime.MIDNIGHT, LocalTime.NOON);
    System.out.println(duration.negated().getSeconds());

}