Is there any possible way to allow multiple different types of identifiers on a class.
I.e. on ArrayLists you can do:
private ArrayList<Employees> e = new ArrayList<Employees>();
the "Employees" is the identifier and can be accepted along with many others. But if I've created my own class and I want it to be able to accept identifiers, is it possible to do so?