Friday 8 June 2018

How to use values() method of DayOfWeek Enum | Java 8 Date and Time | Java Date and Time


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

DayOfWeekDemo.java

import java.time.DayOfWeek;

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

        /*
         * Returns:
         *
         * an array containing the constants of this enum
         * type, in the order they are declared
         */

        DayOfWeek[] dayOfWeekArray = DayOfWeek.values();
     
        for (DayOfWeek dayOfWeek : dayOfWeekArray)
        {
            System.out.println(dayOfWeek);
        }

    }

}

Output

MONDAY
TUESDAY
WEDNESDAY
THURSDAY
FRIDAY
SATURDAY
SUNDAY

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

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

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