public static List makearrayobject(Object o){ List term = new ArrayList(); for (int i =0;i< Array.getLength(o);i++){ term.add(Array.get(o,i)); } return term; }
public static List makearrayobject(Object o){ List term = new ArrayList(); for (int i =0;i< Array.getLength(o);i++){ term.add(Array.get(o,i)); } return term; }