Duration ofMinutes(long) method in Java with Examples Last Updated : 26 Nov, 2018 Comments Improve Suggest changes Like Article Like Report The ofMinutes(long) method of Duration Class in java.time package is used to get a duration in a 1 minute format. In this method, the seconds are calculated as total seconds in 1 minute format, i.e. 60 seconds per minute. Syntax: public static Duration ofMinutes(long minutes) Parameters: This method accepts a parameter minutes which is the number of minutes. It can be positive or negative. Return Value: This method returns a Duration representing the time in 1 minute format. Exception: This method throws ArithmeticException if the input minutes exceeds the capacity of Duration. Below examples illustrate the Duration.ofMinutes() method: Example 1: Java // Java code to illustrate ofMinutes() method import java.time.Duration; public class GFG { public static void main(String[] args) { // input number of Minutes long noOfMinutes = 5; // Duration using ofMinutes() method Duration duration = Duration.ofMinutes(noOfMinutes); System.out.println(duration.getSeconds()); } } Output: 300 Example 2: Java // Java code to illustrate ofMinutes() method import java.time.Duration; public class GFG { public static void main(String[] args) { // input number of Minutes long noOfMinutes = -214545; // Duration using ofMinutes() method Duration duration = Duration.ofMinutes(noOfMinutes); System.out.println(duration.getSeconds()); } } Output: -12872700 Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#ofMinutes-long- Comment More infoAdvertise with us Next Article Duration plusMinutes(long) method in Java with Examples C code_r Follow Improve Article Tags : Java Java-Functions Java-time package Java-Duration Practice Tags : Java Similar Reads Duration plusMinutes(long) method in Java with Examples The plusMinutes(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of minutes added, passed as the parameter. Syntax: public Duration plusMinutes(long numberOfMinutes) Parameters: This method accepts a parameter numberOfMin 1 min read Duration plusMinutes(long) method in Java with Examples The plusMinutes(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of minutes added, passed as the parameter. Syntax: public Duration plusMinutes(long numberOfMinutes) Parameters: This method accepts a parameter numberOfMin 1 min read Duration ofMillis(long) method in Java with Examples The ofMillis(long) method of Duration Class in java.time package is used to get a duration in a 1 milliSecond format. Syntax: public static Duration ofMillis(long milliSeconds) Parameters: This method accepts a parameter milliSeconds which is the number of milliSeconds. It can be positive or negativ 1 min read Duration ofMillis(long) method in Java with Examples The ofMillis(long) method of Duration Class in java.time package is used to get a duration in a 1 milliSecond format. Syntax: public static Duration ofMillis(long milliSeconds) Parameters: This method accepts a parameter milliSeconds which is the number of milliSeconds. It can be positive or negativ 1 min read Duration minusMinutes(long) method in Java with Examples The minusMinutes(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of minutes subtracted, passed as the parameter.Syntax: public Duration minusMinutes(long numberOfMinutes) Parameters: This method accepts a parameter numbe 1 min read Duration toMinutes() method in Java with Examples The toMinutes() method of Duration Class in java.time package is used get the value of this duration in number of minutes. Syntax: public long toMinutes() Parameters: This method do not accepts any parameter. Return Value: This method returns a long value which is the number of minutes in this durat 1 min read Like