VOOZH about

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

⇱ ZoneOffset range(TemporalField) method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ZoneOffset range(TemporalField) method in Java with Examples

Last Updated : 13 Dec, 2018
ZoneOffset range(TemporalField) method in Java with Examples The range(TemporalField) method of ZoneOffset Class in java.time package is used to get the range of the temporalField, passed as the parameter, in the ZoneOffset. This method returns a ValueRange value stating the same. Syntax:
public ValueRange range(TemporalField temporalField)
Parameters: This method accepts a parameter temporalField which is the field to query the range for in this ZoneOffset instance. It should not be null. Return Value: This method returns a ValueRange value stating the range of this temporalField in this ZoneOffset instance. Exceptions: This method throws:
  • DateTimeException: if the range for the field cannot be obtained.
  • UnsupportedTemporalTypeException: if the field is not supported.
Below examples illustrate the ZoneOffset.range() method: Example 1:
Output:
ZoneOffset: +05:30
Second value: -64800 - 64800
Example 2: To show UnsupportedTemporalTypeException
Output:
ZoneOffset: +05:00
java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: NanoOfDay
Reference: Oracle Doc
Comment