*
Example of correct usage:
*
* ClassLoader loader = ...;
* String name = ...;
* for (URL resource : NbCollections.iterable(loader.{@link ClassLoader#getResources getResources}(name))) {
* // ...
* }
*
*
* @param enumeration an enumeration
* @return an iterable wrapper which will traverse the enumeration once
* ({@link Iterator#remove} is not supported)
* @throws NullPointerException if the enumeration is null
* @see