Example usage for java.time Period multipliedBy

List of usage examples for java.time Period multipliedBy

Introduction

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

Prototype

public Period multipliedBy(int scalar) 

Source Link

Document

Returns a new instance with each element in this period multiplied by the specified scalar.

Usage

From source file:Main.java

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

    Period l = p.multipliedBy(10);
    System.out.println(l);// w ww.j av 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.co  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);
}