I am reading records from Excel to a POJO
I have created an enum to hold the order of each column 
My question is Is it possible to save the column type as well?
so later I will pass this enum to some method it will know how to process the value based on its type...
for example:
public enum StudentInfo{
 name(0,String),
 age(1,Integer),
 height(2,Float),
 eyeColor(5,Color);
 
     
    