How can I determine if a Class is an array of anything?
I found some code that says String[].class.getName();
so I can get the name of a String[] array, but what about finding out if anything is an array of anything?
publicboolean isArray (Class c){
String cName = c.getName();
// Then what?
}
Basically I want to test if it's an array of simple type (int[], float[], char[], etc)

