Here you can find the source of lastMonth(LocalDate date)
public static int lastMonth(LocalDate date)
//package com.java2s; //License from project: Apache License import java.time.LocalDate; public class Main { public static int lastMonth(LocalDate date) { return date.minusMonths(1).getMonthValue(); }// w ww .j a va 2 s . c o m }