aspose file tools
The moose likes Java in General and the fly likes Enums vs. HashMap vs. others for decision handling Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Enums vs. HashMap vs. others for decision handling" Watch "Enums vs. HashMap vs. others for decision handling" New topic
Author

Enums vs. HashMap vs. others for decision handling

nithin chinni
Ranch Hand

Joined: Dec 02, 2010
Posts: 38
Hi,
In my project I have encountered a situation where given an input functionality varies.
So I have though of two ways for dealing with this situation. Both work but want to choose one.
First Method:
Using a Enum where given an input and depending on enum output I will handle the business login. Also I have handled the exception saying if there is no enum for that particular type I will return null.

Second Method:
Using HashMap which gives the value when given a key. And using that value will build the business logic.

There are even many ways like using if-else, switch-case etc.
Can someone help me in choosing why I should go with a particular implementation.
My team lead says hashmaps because of performance but there will not be more than 5 types.
I prefer enums because of the readability.

So thats where I am thinking, what to go with. Any suggestions??
Stephan van Hulst
Bartender

Joined: Sep 20, 2010
Posts: 3044
    
    1

This is an incredibly vague description of your problem. Maybe you can give us more background on what it really is that your business logic is about.
 
I agree. Here's the link: jrebel
 
subject: Enums vs. HashMap vs. others for decision handling
 
Similar Threads
Using Unreferenced vs a daemon thread
fitNesse vs junit
Enum vs Long
\" vs '
Best way to compare string param to enum list to perform correct action