Friday, October 10, 2025
HomeLanguagesJavaLocalDateTime getMinute() method in Java with Examples

LocalDateTime getMinute() method in Java with Examples

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);
    }
}


Output:

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);
    }
}


Output:

MinuteOfHour: 29

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/LocalDateTime.html#getMinute–

RELATED ARTICLES

Most Popular

Dominic
32349 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS