Set
This class is Serializable from Commons Collections 3.1.
Attempts to modify it will result in an UnsupportedOperationException. @since 3.0 @version $Id: UnmodifiableSet.java 1479406 2013-05-05 22:02:01Z tn $
800801802803804805806
*/ public static NodeListIterator nodeListIterator(final Node node) { if (node == null) { throw new NullPointerException("Node must not be null"); } return new NodeListIterator(node); }
10631064106510661067106810691070107110721073107410751076
} if (obj instanceof Map) { return ((Map<?, ?>) obj).values().iterator(); } if (obj instanceof NodeList) { return new NodeListIterator((NodeList) obj); } if (obj instanceof Node) { return new NodeListIterator((Node) obj); } if (obj instanceof Dictionary) { return new EnumerationIterator<Object>(((Dictionary<?, ?>) obj).elements()); } else if (obj.getClass().isArray()) { return new ArrayIterator<Object>(obj);
780781782783784785786
*/ public static NodeListIterator nodeListIterator(final NodeList nodeList) { if (nodeList == null) { throw new NullPointerException("NodeList must not be null"); } return new NodeListIterator(nodeList); }
804805806807808809810
10671068106910701071107210731074107510761077107810791080
819820821822823824825
843844845846847848849
11061107110811091110111111121113111411151116111711181119