The ofHours(int) method of ZoneOffset Class in java.time package is used to obtain an instance of ZoneOffset using the offset in hours passed as the parameter. This method takes the hours as parameter in the form of int and converts it into the ZoneOffset. The maximum supported range is from +18:00 to -18:00 inclusive.
Syntax:
public static ZoneOffset ofHours(int hours)
Parameters: This method accepts a parameter hours which is int to be converted into an ZoneOffset instance.
Return Value: This method returns a ZoneOffset instance parsed from the specified hours.
Exception: This method throws DateTimeException if the hours is invalid.
Below examples illustrate the ZoneOffset.ofHours() method:
Example 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
int hours = 10 ;
ZoneOffset zoneOffset
= ZoneOffset.ofHours(hours);
System.out.println(zoneOffset);
}
}
|
Example 2: To demonstrate DateTimeException
import java.time.*;
public class GFG {
public static void main(String[] args)
{
int hours = 20 ;
try {
ZoneOffset zoneOffset
= ZoneOffset.ofHours(hours);
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Output:
java.time.DateTimeException: Zone offset hours not in valid range: value 20 is not in the range -18 to 18
Reference: Oracle Doc