LocalDateTime getMonthValue()
gets the month-of-year field from 1 to 12.
This method returns the month as an int from 1 to 12.
getMonthValue
has the following syntax.
public int getMonthValue()
The following example shows how to use getMonthValue
.
import java.time.LocalDateTime; public class Main { public static void main(String[] args) { LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01); System.out.println(a.getMonthValue()); } }
The code above generates the following result.