aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Understanding enum Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Understanding enum" Watch "Understanding enum" New topic
Author

Understanding enum

Ravi Shankar Kumar
Greenhorn

Joined: Aug 08, 2008
Posts: 26

Hi

can anybody tell me how enum is advantageous if i am using inside class instead of static variable keeping out of this.....


Ravi Shankar Kumar
SCJP 1.5, (Following-OCWCD)
Stephan van Hulst
Bartender

Joined: Sep 20, 2010
Posts: 3056
    
    1

Can you please rephrase your question? I'm not sure what you meant.
Sebanti Sanyal
Ranch Hand

Joined: Nov 07, 2011
Posts: 58

If you strictly want a variable to assume a value within a specific set of constants, you should be better off with an enum.


In the above example, 'Color c' can take only four values(e.g. Color.RED, Color.YELLOW, Color.BLUE or Color.GREEN), whereas, in case of 'int color', nothing stops me from assigning any value outside the four static final int constants.
Stephan van Hulst
Bartender

Joined: Sep 20, 2010
Posts: 3056
    
    1

You've already identified the most important advantage yourself.

It doesn't make sense for a Color to be 1 or 2 or 5. Colors should be RED or GREEN, etc. and there should be nothing else - like an integer value - that is of importance.

Enums provide this important distinction.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Understanding enum
 
Similar Threads
what results byte code in java
How to define constants for several classes?
Enum Problem
retrieve enumeration datatype into jsp
Creating SingleTON without static variables