Friday, November 21, 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
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11995 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7164 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS