Open In App

ZoneOffset get(TemporalField) method in Java with Examples

The get(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 integer value of this field. Syntax:

public int get(TemporalField temporalField)

Parameters: This method accepts  a parameter temporalField which is required from this ZoneOffset instance. Return Value: This method returns an integer 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.get() method: Example 1: 




// Java code to illustrate get() method
 
import java.time.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the ZoneOffset instance
        ZoneOffset zoneOffset
            = ZoneOffset.ofHours(5);
        System.out.println("ZoneOffset: "
                           + zoneOffset);
 
        // Using get() method
        System.out.println("Second value: "
                           + zoneOffset.get(ChronoField.OFFSET_SECONDS));
    }
}

Output:

ZoneOffset: +05:00
Second value: 18000

Example 2: To show DateTimeException 




// Java code to illustrate get() method
 
import java.time.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] args)
    {
 
        try {
            // Get the ZoneOffset instance
            ZoneOffset zoneOffset
                = ZoneOffset.ofHours(25);
            System.out.println("ZoneOffset: "
                               + zoneOffset);
 
            // Using get() method
            System.out.println("Second value: "
                               + zoneOffset.get(ChronoField.OFFSET_SECONDS));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}

Output:
java.time.DateTimeException: Zone offset hours not in valid range: value 25 is not in the range -18 to 18

Reference: Oracle Doc


Article Tags :