The
of(String) method of
ZoneOffset Class in
java.time package is used to obtain an instance of ZoneOffset using the offsetId passed as the parameter. This method takes the offsetId as parameter in the form of String and converts it into the ZoneOffset. The ID of the returned offset will be normalized to one of the formats described by getId().
The list of String offsetId accepted by this method are as follows:
- Z - for UTC
- +h
- +hh
- +hh:mm
- -hh:mm
- +hhmm
- -hhmm
- +hh:mm:ss
- -hh:mm:ss
- +hhmmss
- -hhmmss
Note: ± means either the plus or minus symbol. And the maximum supported range is from +18:00 to -18:00 inclusive.
Syntax:
public static ZoneOffset of(String offsetId)
Parameters: This method accepts a parameter
offsetId which is String to be parsed into an ZoneOffset instance.
Return Value: This method returns a
ZoneOffset instance parsed from the specified offsetId.
Exception: This method throws
DateTimeException if the offset ID is invalid.
Below examples illustrate the ZoneOffset.of() method:
Example 1:
Example 2: To demonstrate DateTimeException