}
names.clear();
names.addAll(collectionTypes.keySet());
Collections.sort(names);
for (final String collectionName : names) {
CollectionType collectionType = (CollectionType) collectionTypes.get(collectionName);
logger.debug("collection:{}", collectionType.getName());
logger.debug("class:{}", collectionType.getCollectionClass());
logger.debug("elementType:{}", collectionType.getElementType().getReturnedClass());
}
}