Friday 8 June 2018

How to use range(TemporalField field) method of Month Enum | Java 8 Date and Time


Click here to watch on Youtube: 
https://www.youtube.com/watch?v=9Y7JQU5xrhs&list=UUhwKlOVR041tngjerWxVccw

MonthDemo.java

import java.time.Month;
import java.time.temporal.ChronoField;
import java.time.temporal.ValueRange;

public class MonthDemo
{
    public static void main(String[] args)
    {
        Month month = Month.of(2);

        /*
         * Parameters:
         *
         * field - the field to query the range for, not null
         *
         * Returns:
         *
         * the range of valid values for the field, not null
         */

        ValueRange valueRange = month.range(ChronoField.MONTH_OF_YEAR);
        System.out.println("Range = " + valueRange);
        System.out.println("Min = " + valueRange.getMinimum());
        System.out.println("Max = " + valueRange.getMaximum());
    }

}

Output

Range = 1 - 12
Min = 1
Max = 12

Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/MonthDemo_range.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/MonthDemo_range

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/23d89f367bac9ed4230eafe0abaf49c0a80cc445/BasicJava_2018/MonthDemo_range/?at=master

See also:

  • All JavaEE Videos Playlist
  • All JavaEE Videos
  • All JAVA EE Links
  • Spring Tutorial
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Cooking Tutorial
  • No comments:

    Post a Comment