aspose file tools
The moose likes Beginning Java and the fly likes does Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "does "enum" keyword has become a part of java only in Java 1.5?" Watch "does "enum" keyword has become a part of java only in Java 1.5?" New topic
Author

does "enum" keyword has become a part of java only in Java 1.5?

phil shea
Greenhorn

Joined: Aug 24, 2005
Posts: 12
Hi,
I have a simple problem. I have downloaded a open source java project. And i tried to "build" it using Ant tool. The build has failed. And all the errors are related to "enum" keyword saying that "cannot use the 'enum' keyword as a variable.
I want to know whether "enum" keyword has become the part of java only with java 1.5?

Regards
vijay
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56232
    
  13

Yes.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
phil shea
Greenhorn

Joined: Aug 24, 2005
Posts: 12
So all the legacy code which has used "enum" as a variable name will not work with Java1.5 with changing the code.
phil shea
Greenhorn

Joined: Aug 24, 2005
Posts: 12
sorry, i mean without changing the code
Rick O'Shay
Ranch Hand

Joined: Sep 19, 2004
Posts: 531
The fix is to change the variable but meanwhile you can compile as follows:

<javac souce="1.4" target="1.4" ...

or

<javac souce="1.4" target="1.5" ...

for 5.0 compliant input/output

<javac source="1.5" target="1.5" ...


In other words, indicate the version of java the source was written in and what your target platform is. Keep in mind that Java 5.0 runs 1.2, 1.3, 1.4 binaries. As you might imagine, 1.5 is a better compiler than 1.4 so using Java 5.0 for all your needs is a very good idea. You can use any input form and generate any output form.
[ August 31, 2005: Message edited by: Rick O'Shay ]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: does "enum" keyword has become a part of java only in Java 1.5?
 
Similar Threads
error: as of release 1.5, 'enum' is a keyword
Is there anything developed in java 4 and not run in java 5?
keywords confusion
Basic question on foundational Java
java 1.4 and 1.5 compatable ?