collection to object

This commit is contained in:
Keith Donald 2009-09-21 05:30:54 +00:00
parent 67c02f6c35
commit cb54869726
2 changed files with 30 additions and 5 deletions

View File

@ -15,6 +15,8 @@
*/
package org.springframework.core.convert.support;
import java.lang.reflect.Array;
import org.springframework.core.convert.TypeDescriptor;
class ArrayToObjectGenericConverter implements GenericConverter {
@ -26,7 +28,18 @@ class ArrayToObjectGenericConverter implements GenericConverter {
}
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
throw new UnsupportedOperationException("Not yet implemented");
int length = Array.getLength(source);
if (length == 0) {
return null;
} else {
TypeDescriptor sourceElementType = sourceType.getElementTypeDescriptor();
if (sourceElementType.isAssignableTo(targetType)) {
return Array.get(source, 0);
} else {
GenericConverter converter = conversionService.getConverter(sourceElementType, targetType);
return converter.convert(Array.get(source, 0), sourceElementType, targetType);
}
}
}
}

View File

@ -15,6 +15,8 @@
*/
package org.springframework.core.convert.support;
import java.util.Collection;
import org.springframework.core.convert.TypeDescriptor;
class CollectionToObjectGenericConverter implements GenericConverter {
@ -26,7 +28,17 @@ class CollectionToObjectGenericConverter implements GenericConverter {
}
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
throw new UnsupportedOperationException("Not yet implemented");
Collection sourceCollection = (Collection) source;
if (sourceCollection.size() == 0) {
return null;
} else {
TypeDescriptor sourceElementType = sourceType.getElementTypeDescriptor();
if (sourceElementType == TypeDescriptor.NULL || sourceElementType.isAssignableTo(targetType)) {
return sourceCollection.iterator().next();
} else {
GenericConverter converter = conversionService.getConverter(sourceElementType, targetType);
return converter.convert(sourceCollection.iterator().next(), sourceElementType, targetType);
}
}
}
}