The getMinute() method of an LocalDateTime class is used to return the minute-of-hour field. This method returns an integer value ranging from 0 to 59, i.e. the Minutes of a hour.
Syntax:
public int getMinute()
Parameter: This method does not accept any parameter.
Returns: This method returns an integer value which represents the minute-of-hour and it ranges from 0 to 59.
Below programs illustrate the LocalDateTime.getMinute() method:
Program 1:
// Java program to demonstrate// LocalDateTime.getMinute() method  import java.time.*;  public class GFG {    public static void main(String[] args)    {          // create a LocalDateTime Object        LocalDateTime local            = LocalDateTime.parse("2018-12-03T12:39:10");          // get MinuteOfHour        int minuteOfHour = local.getMinute();          // print result        System.out.println("MinuteOfHour: "                           + minuteOfHour);    }} |
MinuteOfHour: 39
Program 2:
// Java program to demonstrate// LocalDateTime.getMinute() method  import java.time.*;  public class GFG {    public static void main(String[] args)    {          // create a LocalDateTime Object        LocalDateTime local            = LocalDateTime.parse("2019-01-28T22:29:10");          // get MinuteOfHour        int minuteOfHour = local.getMinute();          // print result        System.out.println("MinuteOfHour: "                           + minuteOfHour);    }} |
MinuteOfHour: 29
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/LocalDateTime.html#getMinute–
