Example usage for java.time Period minusDays

List of usage examples for java.time Period minusDays

Introduction

In this page you can find the example usage for java.time Period minusDays.

Prototype

public Period minusDays(long daysToSubtract) 

Source Link

Document

Returns a copy of this period with the specified days subtracted.

Usage

From source file:Main.java

public static void main(String[] args) {
    Period p = Period.ofMonths(1);

    Period l = p.minusDays(10);
    System.out.println(l);// ww w .java  2  s .co  m

}

From source file:Main.java

public static void main(String[] args) {
    Period p1 = Period.ofDays(15);
    System.out.println(p1);/*from   w w  w . ja  va2 s  .  c o m*/
    Period p2 = p1.plusDays(12);
    System.out.println(p2);
    Period p3 = p1.minusDays(12);
    System.out.println(p3);
    Period p4 = p1.negated();
    System.out.println(p4);
    Period p5 = p1.multipliedBy(3);
    System.out.println(p5);
}