Home »
        Java »
        Java Reference »
        Java LocalDate Class
    
    Java LocalDate Class | get() Method with Example
    
    
       
    
	    LocalDate Class get() method: Here, we are going to learn about the get() method of LocalDate Class with its syntax and example.
	    
		    Submitted by Preeti Jain, on May 29, 2020
	    
    
    LocalDate Class get() method
    
        - get() method is available in java.time package.
 
        - get() method is used to get the value for the given field from this LocalDate object.
 
        - get() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
 
        - 
            get() method may throw an exception at the time of returning value for the given field.
            
                - DateTimeException: This exception may throw when the given field couldn’t be generated.
 
                - UnsupportedTemporalTypeException: This exception may throw when the given field is unsupported.
 
                - ArithmeticException: This exception may throw when the calculated result exceeds the limit.
 
            
         
    
Syntax:
    public int get(TemporalField t_field);
    Parameter(s):
    
        - TemporalField t_field – represents the temporal field of the returned value.
 
    
    
    Return value:
    The return type of this method is int, it returns the value for the given temporal field from this LocalDate.
    
    Example:
// Java program to demonstrate the example 
// of get(TemporalField t_field) method 
// of LocalDate
import java.time.*;
import java.time.temporal.*;
public class GetOfLocalDate {
    public static void main(String args[]) {
        // Instantiates two LocalDate
        LocalDate l_da1 = LocalDate.parse("2007-04-04");
        LocalDate l_da2 = LocalDate.now();
        // Display l_da1,l_da2
        System.out.println("LocalDate l_da1 and l_da2: ");
        System.out.println("l_da1: " + l_da1);
        System.out.println("l_da2: " + l_da2);
        System.out.println();
        // Here, this method gets the value
        // for the given field YEAR
        int get_val = l_da1.get(ChronoField.YEAR);
        // Display get_val
        System.out.println("l_da1.get(ChronoField.YEAR): " + get_val);
        // Here, this method gets the value 
        // for the given field DAY_OF_WEEK
        get_val = l_da2.get(ChronoField.DAY_OF_WEEK);
        // Display get_val
        System.out.println("l_da2.get(ChronoField.DAY_OF_WEEK): " + get_val);
    }
}
Output
LocalDate l_da1 and l_da2: 
l_da1: 2007-04-04
l_da2: 2020-05-29
l_da1.get(ChronoField.YEAR): 2007
l_da2.get(ChronoField.DAY_OF_WEEK): 5
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement