I have an array of objects. Content of each array element can be String, or it can again be another array with strings. Or it can be again array of arrays that hold strings.
Example:
Object obj1 = array[[str1, str2, str3], [str4, str5]]
or: Object obj2 =array [str1, str2]
or: Object obj3 = "this string"
I need a method which takes this object as argument, and if it is one of first 2 cases, returns single array with those elements. And if it is a last case, it returns array with single string element that came in as param.
So, if i do
getDataForColumn(obj1) i get array: [str1, str2. str3....str5]
getDataForColumn(obj2) i get array: [str1, str2] //same as input, i know
getDataForColumn(obj3) i get array: ["this string"]
I am trying, but I really can not wrap my head how to do this with recursion, nor is it possible, well at least in this way.
This is what I came up with, and stuck.
private static Object[] getDataForColumn(Object column) {
if(column instanceof Object[]){
Object[] castarray = (Object[])column;
Object[]newArray = new Object[castArray.length];
for (int i = 0; i < castarray.length; i++) {
if((castarray[i] instanceof Object[])){
//recursion, but how :D
}
else{
newArray[i] = castArray[i];
}
}
return newArray;
}
return new array with object that came in.....
}
Please help. Thanx