When ever you have a select statement using the type of an object, it is a prime candidate for refactoring to polymorphism.
Check out the book Refactoring by Martin Fowler:
"One of the most obvious symptoms of object-oriented code is its comparative lack of switch (orcase) statements. The problem with switch statements is essentially that of duplication. Often youfind the same switch statement scattered about a program in different places. If you add a newclause to the switch, you have to find all these switch, statements and change them. The objectorientednotion of polymorphism gives you an elegant way to deal with this problem.
Most times you see a switch statement you should consider polymorphism. The issue is wherethe polymorphism should occur. Often the switch statement switches on a type code. You wantthe method or class that hosts the type code value. So use Extract Method to extract the switchstatement and then Move Method to get it onto the class where the polymorphism is needed. Atthat point you have to decide whether to Replace Type Code with Subclasses or ReplaceType Code with State/Strategy. When you have set up the inheritance structure, you can useReplace Conditional with Polymorphism."
Here is one approach to using polymorphism in your situation:
