Monday 8 May 2017

Java Tutorial: Enum in java[How to define a constructor and method in enum - siteinfo]


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

EnumDemo.java
enum SiteInfo
{
    AMAZON("https://www.amazon.in/"), 
    PAYTM("https://www.paytm.com"), 
    SNAPDEAL("https://www.snapdeal.com/");

    private String url;

    private SiteInfo(String url)
    {
        this.url = url;
    }

    public String getUrl()
    {
        return url;
    }
}

public class EnumDemo
{
    public static void main(String[] args)
    {
        System.out.println(SiteInfo.PAYTM.getUrl());
    }
}
Output
https://www.paytm.com
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/EnumDemo_siteinfo_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/EnumDemo_siteinfo_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/45d5519a1474198166ac515ccd559cc996bb550c/BasicJava/EnumDemo_siteinfo_App/?at=master

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

    Post a Comment