Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

ChronoLocalDate range() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The range() method of a ChronoLocalDate interface is used to get the range of valid values for the field passes as a parameter. This method returns a ValueRange object which contains the minimum and maximum valid values for a field. When the field is not supported then an exception is thrown. This ChronoLocalDate is helpful to enhance the accuracy of the returned range.

Syntax:

public ValueRange range(TemporalField field)

Parameters: This method accepts one single parameter field which is the field to query the range for.

Return value: This method returns ValueRange which is the range of valid values for the field, not null.

Exception: This method throws following Exceptions:

  • DateTimeException – if the range for the field cannot be obtained.
  • UnsupportedTemporalTypeException – if the field is not supported.

Below programs illustrate the range() method:

Program 1:




// Java program to demonstrate
// ChronoLocalDate.range() method
  
import java.time.*;
import java.time.temporal.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoLocalDate object
        ChronoLocalDate localD
            = LocalDate.parse("2018-12-06");
  
        // print ChronoLocalDate
        System.out.println("ChronoLocalDate: "
                           + localD);
  
        // get range of Days field
        // from ChronoLocalDate using range method
        ValueRange range
            = localD.range(ChronoField.DAY_OF_MONTH);
  
        // print range of DAY_OF_MONTH
        System.out.println("Range of DAY_OF_MONTH: "
                           + range);
    }
}

Output:

ChronoLocalDate: 2018-12-06
Range of DAY_OF_MONTH: 1 - 31

Program 2:




// Java program to demonstrate
// ChronoLocalDate.range() method
  
import java.time.*;
import java.time.temporal.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoLocalDate object
        ChronoLocalDate localD
            = LocalDate.parse("2018-12-06");
  
        // print ChronoLocalDate
        System.out.println("ChronoLocalDate: "
                           + localD);
  
        // get range of DAY_OF_YEAR field
        // from ChronoLocalDate using range method
        ValueRange range
            = localD.range(ChronoField.DAY_OF_YEAR);
  
        // print range of DAY_OF_YEAR
        System.out.println("Range of DAY_OF_YEAR: "
                           + range);
    }
}

Output:

ChronoLocalDate: 2018-12-06
Range of DAY_OF_YEAR: 1 - 365

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/temporal/TemporalAccessor.html#range-java.time.temporal.TemporalField-


My Personal Notes arrow_drop_up
Last Updated : 29 Apr, 2019
Like Article
Save Article
Similar Reads
Related Tutorials