Package java.time

Examples of java.time.LocalDateTime.plus()


    // Test altering component fields using delta method plusXXX()
    LocalDateTime futureDateTime = localDateTime.plusWeeks(3);
    expectedDate = LocalDate.of(localDateTime.getYear(), Month.SEPTEMBER, 20);
    assertThat(futureDateTime, is(LocalDateTime.of(expectedDate, expectedTime)));
    // Test altering component fields using generic delta method plus(value, Unit)
    futureDateTime = futureDateTime.plus(1, ChronoUnit.WEEKS);
    expectedDate = LocalDate.of(localDateTime.getYear(), Month.SEPTEMBER, 27);
    assertThat(futureDateTime, is(LocalDateTime.of(expectedDate, expectedTime)));
  }

  /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.