Here you can find the source of period(LocalDate startDate, LocalDate endDate)
public static Period period(LocalDate startDate, LocalDate endDate)
//package com.java2s; //License from project: Apache License import java.time.*; public class Main { public static Period period(LocalDate startDate, LocalDate endDate) { return Period.between(startDate, endDate); }/*from w w w.j ava 2 s . c o m*/ }