Logger.debug(this,"The iterative object in the #foreach() loop at " +
i + " is of type java.util.Enumeration. Because " +
"it is not resettable, if used in more than once it " +
"may lead to unexpected results.");
}
return new EnumerationIterator((Enumeration) obj);
}
else if(obj instanceof Iterable)
{
return ((Iterable)obj).iterator();
}