![]() |
VOOZH | about |
The getLong(TemporalField) method of ZoneOffset Class in java.time package is used to get the value of the specified TemporalField from this ZoneOffset instance. This method takes the TemporalField as the parameter and returns an long value of this field. Syntax:
public long getLong(TemporalField temporalField)
Parameters: This method accepts a parameter temporalField which is required from this ZoneOffset instance. Return Value: This method returns an long value which is the field value of the temporalField passed as the parameter to this ZoneOffset instance. Exceptions: This method throws:
Below examples illustrate the ZoneOffset.getLong() method: Example 1:
ZoneOffset: +05:30 Second value: 19800
Example 2: To show DateTimeException
java.time.DateTimeException: Zone offset hours not in valid range: value 25 is not in the range -18 to 18
Reference: Oracle Doc