Saturday, December 6, 2025
HomeLanguagesJavaOffsetTime getMinute() method in Java with examples

OffsetTime getMinute() method in Java with examples

The getMinute() method of OffsetTime class in Java is used to get the value of the minute field from this OffsetTime instance.

Syntax :

public int getMinute()

Parameter : This method accepts does not accepts any parameters.

Return Value: It returns the minute-of-hour which in range from 0 to 59.

Below programs illustrate the getMinute() method:

Program 1 :




// Java program to demonstrate the getMinute() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("15:10:30+07:00");
  
        // gets the minute in time
        System.out.println("minute: " + time.getMinute());
    }
}


Output:

minute: 10

Program 2 :




// Java program to demonstrate the getHour() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:30:30+06:00");
  
        // gets minute in the time
        System.out.println("Minute: " + time.getMinute());
    }
}


Output:

Minute: 30

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32427 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6803 POSTS0 COMMENTS
Nicole Veronica
11944 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12014 POSTS0 COMMENTS
Shaida Kate Naidoo
6933 POSTS0 COMMENTS
Ted Musemwa
7187 POSTS0 COMMENTS
Thapelo Manthata
6882 POSTS0 COMMENTS
Umr Jansen
6867 POSTS0 COMMENTS