aspose file tools
The moose likes Java in General and the fly likes Anybody know how to use  Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Anybody know how to use  "enum" in Java?" Watch "Anybody know how to use  "enum" in Java?" New topic
Author

Anybody know how to use "enum" in Java?

Jon Campbell
Greenhorn

Joined: Nov 21, 2006
Posts: 5
The following code compiles, but I don't have any documentation on how to use the "enum" structure. I cant find any info on it in my books or Sun's language documentation...

class Test {

enum eone {
Plus { int operate(int x) { return ++x;} },
Minus { int operate(int x) { return --x;} }
}


public static void main (String[] args){
System.out.println("eone="+eone.Plus);
}

}
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Anybody know how to use "enum" in Java?
 
Similar Threads
Using multiple enum
Anybody know how to use "enum" in Java?
Refactoring int constant's to use enums
getClass() and enums
Convert from enum ordinal/constant to enum type