aspose file tools
The moose likes Beginning Java and the fly likes Enum Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Enum" Watch "Enum" New topic
Author

Enum

Dharmakumar Gajendran
Greenhorn

Joined: Feb 22, 2010
Posts: 20
What is an Enum and its usage?
Wouter Oet
Saloon Keeper

Joined: Oct 25, 2008
Posts: 2700

After reading this what don't you get?


"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." --- Martin Fowler
Please correct my English.
Shashank Agarwal
Ranch Hand

Joined: May 20, 2004
Posts: 105
Dharmakumar Gajendran wrote:Can any please explain what is Enum and its usage?

Thanks.


Enum helps you enumerate things, like say that days in a week, countries in the world etc. A good tutorial can be found here - http://java.sun.com/docs/books/tutorial/java/javaOO/enum.html
 
I agree. Here's the link: http://zeroturnaround.com/jrebel/download
 
subject: 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