A Counter solution to Java 5 Enum in Java 1.4
Java 5 has a very good feature: enum. The enum keyword can be used to create C++ like enums. The enum created in Java 5 are a particular type of class whose instances are only those objects which are members of that enum. Each member of the enum is an instance of that enum class. The super class of all enum objects is java.lang.Enum and enums can not be extended. Java 5 also supports methods to be contained in an enum.
For example:
public enum MeasurementType {
Length, Mass, Time;
}
The following code works perfectly fine for the above enum and the output is shown below:
System.out.println(MeasurementType.Length instanceof MeasurementType);
System.out.println(MeasurementType.Length);
Output:
true
Length
Now, there are many situations where we need to use enums and the above stated features of enums but we can not use Java 5 features because of some requirements of the project (like many projects are created to run on JDK 1.3/1.4 because client environment does not support JDK 5 or some other reason like that). If such a case arises then many developers feel upset and devise their own method to tackle the problem at hand. Sometimes, there are situations where we have written a library using Java 5 features like enums but we need to use that library in a legacy project and port the whole code to Java 2. If we are using annotations, then we need to discard all the annotations and enums. Rest of the Java 5 features are binary compatible with earlier JVMs and we can easily port the library. But here comes the hardest thing: Discarding Enums. Annotations are still least understood and least used feature of Jaa 5 and mostly used by Framework Junkies in special type of libraries like ORM etc. But enums are very popular and there is not possible to change each and every line of code that is using enum class.
I here present a solution that can be used to replace an enum class with a Java 2 class and you need not change the code using that enum class anywhere.
Look at the following code:
public abstract class MeasurementType {
private MeasurementType() {
//constructor made private so that any classes inheriting from this class may not be created.
}
public static final MeasurementType Length = new MeasurementType() {
public String toString() {
return "Length";
}
};
public static final MeasurementType Mass = new MeasurementType() {
public String toString() {
return "Mass";
}
};
public static final MeasurementType Time = new MeasurementType() {
public String toString() {
return "Time";
}
};
}
Now the code shown above that used an enum MeasurementType works perfectly fine with class MeasurementType.
System.out.println(MeasurementType.Length instanceof MeasurementType);
System.out.println(MeasurementType.Length);
Output:
true
Length
If your enums had any methods inside them, they can be included in the abstract class created to replace the enum class. The java file containing the enum class is to be replaced by the file containing abstract class and obviously the package will be same so that all the classes using the enum may be compiled without any changes.
This way you can replace all your Java 5 enums and compile all your libraries for Java 2.
The pattern shown above is a well known solution to create enum like structures in Java. The class is kept abstract and constructor is kept private so that no classes can be created inherited from the enumeration class and no new members can be added in enum which are not included originally by the creator of the lilbrary.
Happy Porting....
Nishant Saini
-------
Hi,
Thanks for reminding that I am missing values() and valueOf() methods of Java 5 Enum in my Enum class written for Java 2. Actually I was not using these methods in my little library that I needed to port to Java 2.
We can add these two methods to our MeasurementType example, as follows:
private static final MeasurementType[] values = new MeasurementType[]{Length, Mass, Time};
public static final MeasurementType[] values() {
return values;
}
public static final MeasurementType valueOf(String value) {
if("Length".equals(value)) {
return Length;
}
else if("Mass".equals(value)) {
return Mass;
}
else if("Time".equals(value)) {
return Time;
}
return null;
}

25 comments:
You are missing the values array, the parsing from string and last but not least, the code that uses instanceof Enum checks (e.g. custom serializing streams.)
It might be useful to include the toString() method (along with other enum-like methods) as an abstract method in the main body of the class. This will force all your inner concrete classes to implement the method.
Currently, one of your "enum values" could fail to implement the toString() method.
However it is a good idea to add toString() as an abstract method in the abstract class, I could not find which value class is missing the toString() method!!!
Your nice article have inspired myself greatly to develop an article about this same subject.
I´m new in the blog world, so my first post was an article about this subject and I am pleased to share it with you all. It is incredible that still companies that uses Java 1.4 beacuse they are afraid of the tecnology migration. So to minimize the future work in the application´s port to another compiler versions, the use of constants as enumerations may help a lot.
Visit my blog for more info:
http://tennaito-tech.blogspot.com/
Very nice the Retroweaver thing!! But still companies that doesnt like the ideia of third-party solutions. I am in a project just like that... the client avoid all third-party libraries and just permit those that he already have estabilished on his architecture. Its a pain... but they pay us... hehehehhehehe!!
can viagra be used by women viagra and alcohol cost of viagra guaranteed cheapest viagra cialis vs viagra viagra soft tabs low cost viagra viagra no prescription viagra england pharmacy viagra viagra online stores viagra women effects of viagra which is better cialis or viagra
Of course, what a great site and informative posts, I will add backlink - bookmark this site? Regards, Reader.
rH3uYcBX
topic39, [url=http://www.chop.edu/forum/user/profile/8207.page]klonopin without prescription[/url], ;-( aef, http://www.chop.edu/forum/user/profile/8207.page buy klonopin no prescription *sorry*, [url=http://www.chop.edu/forum/user/profile/8208.page]purchase xanax 2mg[/url], :-) pvl, http://www.chop.edu/forum/user/profile/8208.page xanax 2mg :-(, [url=http://forum.cprs.ca/default.aspx?g=posts&m=6]order adipex[/url], :-) jlk, http://forum.cprs.ca/default.aspx?g=posts&m=6 order adipex :-), [url=http://forum.cprs.ca/default.aspx?g=posts&m=7]alprazolam no prescription[/url], :-( pgr, http://forum.cprs.ca/default.aspx?g=posts&m=7 buy alprazolam no prescription ;-(, [url=http://forum.cprs.ca/default.aspx?g=posts&m=8]buy ambien no prescription[/url], ;-( moq, http://forum.cprs.ca/default.aspx?g=posts&m=8 buy ambien without prescription ;-(
[color=red]The Most Affordable XRUMER/BACKLINK SERVICE Online!
The EFFORTLESS and POWERFUL WAY TO BUILD MASSIVE # OF BACKLINKS
[color=black]
200,000 BLASTS of your URLs+ Anchor Tex, message, pictures (can be spinned) etc
$10 USD (shared with other clients like a carpool), or
$25/200k for exclusive!(you control EVERYTHING)
$50 Exclusive @ 500,000 blasts.
(Complete reports will be given to clients)
[IMG]http://img697.imageshack.us/img697/1540/arrowdownh.gif[/IMG]
For orders, questions or concerns? Email: [u]formless.void47 at gmail.com [/u]
Note:
1. For STRICT Whitehat sites, it is advised to create buffers to pass on linkjuice. i.e. social bookmarks, cloaked pages etc.
You can blast the site directly, but it entails risk.
Using buffers are 100% safe, speaking from experience.
2. Xrumer is a very technical tool. Just describe to me what sorts of effects you want and well make it happen!
If you want to buy Xrumer?
>>>>> http://cloakedlink.com/chzgykebsd <<<<<<
[color=black]
-------
CLIENT 2 SAMPLE SPACE FILLED WITH URLs,Pics and Keywords
sacramento seo seo auckland seo elite training link exchange seo nashik Xrumer Tips raleigh seo google seo tools seo somerset organic search engine optimization adult seo nc seo seo merseyside seo canada seo company glasgow australian seo company affordable seo company india sempo buy link ads link building seo elite serial Buy Pr6 Link seo questionnaire good seo alexa seo seo toolbook social seo seo surrey seo elite 4 seo traffic seo cv submit url Xrumer Website seo education seo company mumbai raleigh seo company search engine keywords seo guru pakistan seo tactics seo trainee purchase link online seo seo consultants directory seo reseller program seo copywriting services black seo seo essex effective seo seo nottingham seo fees
-----
CLIENT 3 SAMPLE SPACE
[url=http://provenheightincrease.co.cc/ebook/growing-taller-secrets]growing taller secrets[/url] http://provenheightincrease.co.cc/ebook/growing-taller-secrets
[url=http://herpeset.co.cc/cheap/Picture-Of-People-With-Herpes-Herpies-Simplex-Primary-Genital-Herpes.html]picture of people with herpes herpies simplex primary genital herpes[/url]
http://www.ripoffreport.com/alternative-health/global-life-enhancem/global-life-enhancement-ripoff-92ffa.htm
[url=http://buyplasmahdtvre.blog.com/2009/12/11/panasonic-th-65pz750u-65-inch-1080p-plasma-hdtv/]PanasonicTH-65PZ750U65-Inch1080pPlasmaHDTV[/url]
-----
CLIENT 4 SAMPLE SPACE
[url=http://provenheightincrease.co.cc/ebook/height-increasing-supplements]height increasing supplements[/url] http://provenheightincrease.co.cc/ebook/height-increasing-supplements
[url=http://growyourdick.co.cc/penile/true-male-enhancement]true male enhancement[/url] http://growyourdick.co.cc/penile/true-male-enhancement
http://weedvaporizer-volcanovaporizer.info/hookah/volcano/mystfire/volcano.php?vap=heat&b=off&herbal=1VBYvgr&cer=false
http://buycheapplasmatv.info/cgi-bin/index.pl?=hd-ready-lcd-tv [url=http://buycheapplasmatv.info/cgi-bin/index.pl?=hd-ready-lcd-tv]hd ready lcd tv[/url]
[url=http://teethwhiteningstripsreviews.info/xr/stamford-connecticut-teeth-whitening]Kentucky teeth whiteninyg oklahoma teeth whitening natural teeth whitening remedies maryland teeth whitening britesmile teeth whitening Winnipeg teeth whitening products hteeth whitening tooth whitenijng[/url]
-----
CLIENT 5 SAMPLE SPACE
[url=http://cheapxrumerservice.co.cc]Cheap Xrumer Service[/url]
[url=http://cheapxrumerservice.co.cc]Cheapest Xrumer Service[/url]
[url=http://cheapxrumerservice.co.cc]Best Xrumer Service[/url]
--------
http://buyplasmahdtvre.blog.com/2009/12/14/pleo-toy-dinosaur-robotic-baby-dinosaur-buy-pleo-dinosaur-buy-ugobe-pleo-cheap-pleo-dinosaur/##Pleo Toy Dinosaur Robotic Baby Dinosaur Buy Pleo Dinosaur Buy Ugobe Pleo Cheap Pleo Dinosaur
http://cheaphdtvplasma.co.cc/television/plasma-consumables [url=http://cheaphdtvplasma.co.cc/television/plasma-consumables]plasma consumables[/url]
[url=http://kfarbair.com][img]http://www.kfarbair.com/_images/_photos/photo_big8.jpg[/img][/url]
מלון [url=http://www.kfarbair.com]כפר בעיר[/url] - אינטימיות, [url=http://kfarbair.com/services.html]שקט[/url] . אנחנו מספקים שירותי אירוח מגוונים כמו כן יש במקום שירות חדרים הכולל [url=http://www.kfarbair.com/eng/index.html]סעודות רומנטיות[/url] במחירים מפתיעים אשר יוגשו ישירות לחדרכם!
לפרטים אנא לפנות לעמוד המלון - [url=http://kfarbair.com]כפר בעיר[/url] [url=http://www.kfarbair.com/contact.html][img]http://www.kfarbair.com/_images/apixel.gif[/img][/url]
I am the sort of hombre who passions to taste original stuff. Right now I am constructing my own pv panels. I'm managing it all alone without the assistance of my men. I am utilizing the internet as the only way to acheive this. I encountered a really awesome site which explains how to create pv panels and so on. The website explains all the steps required to constructing photovoltaic panels.
I am not sure about how correct the information given there iz. If some guys over here who had xp with these things can have a see and give your feedback in the site it would be awesome and I would highly appreciate it, cause I truly would love to try [URL=http://solar-panel-construction.com]solar panel construction[/URL].
Thanks for reading this. You guys are great.
Hello. And Bye.
Hello! Can you tell me how i can register mail at google [url=http://google.com]google[/url] http://google.com
I am reading this article second time today, you have to be more careful with content leakers. If I will fount it again I will send you a link
Saw your site bookmarked on Reddit.I love your site and marketing strategy.Your site is very useful for me .I bookmarked your site!
Hi
[URL=http://blog.bakililar.az/Botshark/]Buy Tramadol Online[/URL]
I really like when people are expressing their opinion and thought. So I like the way you are writing
Trojan.Deskwizz is a menacing Trojan program that can download harmful files from a remote server and execute them on a compromised PC. Trojan.Deskwizz may also download rogue security software and display fake scans or pop-up adverts. follow these steps Step 1 : Use Registry Editor to Remove Trojan.Deskwizz Registry Values Locate and delete "Trojan.Deskwizz" registry entries: HKEY_LOCAL_MACHINESoftwareMicrosoftWin… Helper Objects{DED99937-DF3F-4ECB-AE37-4D68F7EC… Step 2 : Use Windows Command Prompt to Unregister Trojan.Deskwizz DLL Files Search and unregister "Trojan.Deskwizz" DLL files: nijycom.dll Step 3 : Detect and Delete Other Trojan.Deskwizz Files Remove the "Trojan.Deskwizz" processes files: nijycom.dll [url=http://gordoarsnaui.com]santoramaa[/url]
Hello! Can you tell me how i can register mail at google [url=http://google.com]google[/url] http://google.com
archaeometry an positives and negatives of tl dating [url=http://loveepicentre.com/]sex personals[/url] free gay adult men to men personals in qld oz http://loveepicentre.com/ singles salsa ballroom lessons in chicago
Asus Laptop [url=http://www.hqlaptopbatteries.com/-a135-s2396-laptopbatterymodel1782.html]dell laptop[/url] LAPTOP Magazine http://www.hqlaptopbatteries.com/battery-5600awlmi-batterytype1.html compare laptops
toshiba laptop [url=http://www.hqlaptopbatteries.com/-a105-s1013-laptopbatterymodel1750.html]IBM laptop battery[/url] replacement laptop batteries http://www.hqlaptopbatteries.com/battery-1640z-batterytype1.html laptop review
Alienware Laptop [url=http://www.hqlaptopbatteries.com/-3000lm-laptopbatterymodel1347.html]compare laptops[/url] laptop accessories http://www.hqlaptopbatteries.com/-mx6100-laptopbatterymodel663.html toshiba laptop
Hello! Can you tell me how i can register mail at google [url=http://google.com]google[/url] http://google.com
You have really great taste on catch article titles, even when you are not interested in this topic you push to read it
Genial brief and this enter helped me alot in my college assignement. Thanks you seeking your information.
Making money on the internet is easy in the hush-hush world of [URL=http://www.www.blackhatmoneymaker.com]blackhat seo forum[/URL], Don’t feel silly if you don't know what blackhat is. Blackhat marketing uses little-known or little-understood ways to produce an income online.
Post a Comment