You are viewing a single comment's thread. Return to all comments →
You can use enum for prevent typo.
public enum ActionType{ PIZZA, CAKE } .... switch(ActionType){ case PIZZA : return new Pizza(); case CAKE : return new Cake(); default: return null; }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Factory Pattern
You are viewing a single comment's thread. Return to all comments →
You can use enum for prevent typo.