for (final Object s : source) {
if (strategy == null || !s.getClass().equals(entryClass)) {
strategy = mapperFacade.resolveMappingStrategy(s, null, clazz, false, mappingContext);
entryClass = s.getClass();
}
destination[i++] = (Float) strategy.map(s, null, mappingContext);
}
}
protected void mapArray(double[] destination, List<Object> source, Class<?> clazz, MappingContext mappingContext) {