You would have to invoke the valueOf method of each of these classes. So perhaps:
for (int i = 0; i < domains.length; i++) {
try {
comparableObjects[i] = (Comparable) domains[i]
.getMethod("valueOf", String.class).invoke(null, stringValues[i]);
} catch (NoSuchMethodException ex) {
comparableObjects[i] = stringValues[i];
}
}
This code takes the valueOf method by reflection. getMethod(..) takes the method name and the argument type(s), and invoke(..) takes null as first argument, because the method is static.
If there are other classes that you want to convert from String, you'd have to use their converter methods.
But I don't know whether you actually need this, and why. Since you know all the classes and arguments.