Example usage for java.time Period plusDays

List of usage examples for java.time Period plusDays

Introduction

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

Prototype

public Period plusDays(long daysToAdd) 

Source Link

Document

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

Usage

From source file:Main.java

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

    Period l = p.plusDays(12);
    System.out.println(l);// w w w .  j a v a  2s  .  co  m

}

From source file:Main.java

public static void main(String[] args) {
    Period p1 = Period.ofDays(15);
    System.out.println(p1);//w  w w .ja v a  2 s  . com
    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);
}