Sunday 10 June 2018

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


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

DayOfWeekDemo.java

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

public class DayOfWeekDemo
{
    public static void main(String[] args)
    {

        DayOfWeek dayOfWeek = DayOfWeek.of(1);

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

        ValueRange valueRange = dayOfWeek.range(ChronoField.DAY_OF_WEEK);

        System.out.println(valueRange);
        System.out.println("Min = " + valueRange.getMinimum());
        System.out.println("Max = " + valueRange.getMaximum());

    }

}

Output

1 - 7
Min = 1
Max = 7

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

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/23d89f367bac9ed4230eafe0abaf49c0a80cc445/BasicJava_2018/DayOfWeekDemo_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