Friday 16 March 2018

How to use isSupported method of Year Class which accepts TemporalUnit


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

YearDemo.java

import java.time.Year;
import java.time.temporal.ChronoUnit;

public class YearDemo
{

    public static void main(String[] args)
    {

        Year year = Year.of(2017);

        /*
         * Parameters:
         *
         * unit - the unit to check, null returns false
         *
         * Returns:
         *
         * true if the unit can be added/subtracted, false if not
         */

        boolean isYearSupported = year.isSupported(ChronoUnit.YEARS);
        System.out.println("isYearSupported = " + isYearSupported);

        boolean isDaysSupported = year.isSupported(ChronoUnit.DAYS);
        System.out.println("isDaysSupported = " + isDaysSupported);

    }

}

Output

isYearSupported = true
isDaysSupported = false

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

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/8e3f14caa10b52912934997a22df069c728f47b4/BasicJava_2018/YearDemo_isSupported_unit/?at=master

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

    Post a Comment