Last Updated : 11 Dec, 2018
The
of(String)method of
ZoneOffset Classin
java.time packageis 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:
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: Java
// Java code to illustrate of() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// Get the offset ID
String offsetId = "Z";
// ZoneOffset using of() method
ZoneOffset zoneOffset
= ZoneOffset.of(offsetId);
System.out.println(zoneOffset);
}
}
Example 2: To demonstrate DateTimeException Java
// Java code to illustrate of() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// Get the invalid offset ID
String offsetId = "10:10";
try {
// ZoneOffset using of() method
ZoneOffset zoneOffset
= ZoneOffset.of(offsetId);
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
java.time.DateTimeException: Invalid ID for ZoneOffset, non numeric characters found: 10:10Reference: Oracle Doc
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4