Click here to watch in Youtube :
https://www.youtube.com/watch?v=CdfYeifswq8&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial: Enum in java [How to use enum in if statement - Level] |
public enum Level { HIGH, MEDIUM, LOW }EnumDemo.java
public class EnumDemo { public static void main(String[] args) { Level level = Level.MEDIUM; if (level == Level.HIGH) { System.out.println("This is high voltage"); } else if (level == Level.MEDIUM) { System.out.println("This is meidum voltage"); } else if (level == Level.LOW) { System.out.println("This is low voltage"); } } }Output
This is meidum voltageClick the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/EnumDemo_if_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/EnumDemo_if_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4ee0c57df034098ab5ebc06d5a6296fa5950097a/BasicJava/EnumDemo_if_App/?at=master
See also:
No comments:
Post a Comment