in src/main/java/org/apache/sling/installer/factories/configuration/impl/SortedDictionary.java [106:112]
private static <T> Enumeration<T> sortedEnumeration(Enumeration<T> enumeration) {
SortedSet<T> sortedSet = new TreeSet<>();
while (enumeration.hasMoreElements()) {
sortedSet.add(enumeration.nextElement());
}
return Collections.enumeration(sortedSet);
}