VOOZH about

URL: https://www.geeksforgeeks.org/java/zoneoffset-normalized-method-in-java-with-examples/

⇱ ZoneOffset normalized() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ZoneOffset normalized() method in Java with Examples

Last Updated : 13 Dec, 2018
The normalized() method of the ZoneOffset class in Java is used to normalize the time-zone ID and returns a ZoneOffset where possible. The method returns a normalized ZoneOffset that can be used in place of this ID. The normalization process checks if the rules of this ZoneOffset have a fixed offset. If ZoneOffset has fixed offset then the ZoneOffset equal to that offset is returned. Otherwise, this is returned. Syntax:
public ZoneId normalized()
Parameters: This method accepts nothing. Return value: This method returns the time-zone unique ID. Below programs illustrate the normalized() method: Program 1:
Output:
Normalised zoneId: +05:30
Program 2:
Output:
Normalised zoneId: Z
Reference: Oracle Doc
Comment