If I have objects such as:
Teacher extends Person
Student extends Person
Then, I have a function in a service that returns a List/Array, etc. of Persons, but some items on the list may be a Teacher and some may be Student.
On the return end, I would like to user to be able to check the instance of each element to determine whether it is a student or teacher.
What is the best way to structure this code.
So, in the service I would like something like this:
public LinkedList<Person> getPersonByID(List<String id>);