Friday, December 12, 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

1 COMMENT

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12026 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6892 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS