Extensions for java.util.Enumeration
iterator
Creates an Iterator for an java.util.Enumeration, allowing to use it in for
loops.
operator fun <T> Enumeration<T>.iterator(): Iterator<T>
toList
Returns a list containing the elements returned by this enumeration in the order they are returned by the enumeration.
fun <T> Enumeration<T>.toList(): List<T>