aspose file tools
The moose likes Java in General and the fly likes null strategy with enums/design patterns Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "null strategy with enums/design patterns" Watch "null strategy with enums/design patterns" New topic
Author

null strategy with enums/design patterns

blondy khosa
Greenhorn

Joined: Apr 17, 2008
Posts: 1


public class TestStrategy{
private Strategy getStrategy(){
if(true){
return Strategy.DOCALCULATIONS;}
if(false){
return Strategy.DOANOTHER;}
return null; // my code will not work...I want to return a null strategy but //I don't how to do it...I have just started working with enums....please help with an example of code on how to do it
}
}
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: null strategy with enums/design patterns
 
Similar Threads
My program wont work.
Need to create objects in each of my salty and sugary snack catagories
methods that causes nullpointer exception
Bind class to HttpSession?
Switch abuse?