2004-01-14 16:43:18 -05:00
|
|
|
/* ====================================================================
|
2002-08-17 07:38:53 -04:00
|
|
|
* The Apache Software License, Version 1.1
|
|
|
|
*
|
2004-01-05 17:19:51 -05:00
|
|
|
* Copyright (c) 2002-2004 The Apache Software Foundation. All rights
|
2002-08-17 07:38:53 -04:00
|
|
|
* reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. The end-user documentation included with the redistribution, if
|
2003-08-31 13:30:27 -04:00
|
|
|
* any, must include the following acknowledgement:
|
2002-08-17 07:38:53 -04:00
|
|
|
* "This product includes software developed by the
|
|
|
|
* Apache Software Foundation (http://www.apache.org/)."
|
2003-08-31 13:30:27 -04:00
|
|
|
* Alternately, this acknowledgement may appear in the software itself,
|
|
|
|
* if and wherever such third-party acknowledgements normally appear.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
|
|
|
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
|
|
|
|
* Foundation" must not be used to endorse or promote products derived
|
|
|
|
* from this software without prior written permission. For written
|
|
|
|
* permission, please contact apache@apache.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "Apache"
|
|
|
|
* nor may "Apache" appear in their names without prior written
|
2003-01-10 15:21:25 -05:00
|
|
|
* permission of the Apache Software Foundation.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many
|
|
|
|
* individuals on behalf of the Apache Software Foundation. For more
|
|
|
|
* information on the Apache Software Foundation, please see
|
|
|
|
* <http://www.apache.org/>.
|
|
|
|
*/
|
|
|
|
package org.apache.commons.collections;
|
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
import java.lang.reflect.Array;
|
2002-08-17 07:38:53 -04:00
|
|
|
import java.lang.reflect.Method;
|
2002-08-17 18:14:22 -04:00
|
|
|
import java.util.ArrayList;
|
2002-08-17 07:38:53 -04:00
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.Dictionary;
|
|
|
|
import java.util.Enumeration;
|
|
|
|
import java.util.Iterator;
|
2002-08-17 18:14:22 -04:00
|
|
|
import java.util.List;
|
2002-08-17 07:38:53 -04:00
|
|
|
import java.util.ListIterator;
|
|
|
|
import java.util.Map;
|
2002-08-17 18:14:22 -04:00
|
|
|
import java.util.NoSuchElementException;
|
2002-08-17 07:38:53 -04:00
|
|
|
|
|
|
|
import org.apache.commons.collections.iterators.ArrayIterator;
|
2002-12-13 07:04:16 -05:00
|
|
|
import org.apache.commons.collections.iterators.ArrayListIterator;
|
2002-08-17 07:38:53 -04:00
|
|
|
import org.apache.commons.collections.iterators.CollatingIterator;
|
|
|
|
import org.apache.commons.collections.iterators.EnumerationIterator;
|
|
|
|
import org.apache.commons.collections.iterators.FilterIterator;
|
|
|
|
import org.apache.commons.collections.iterators.FilterListIterator;
|
|
|
|
import org.apache.commons.collections.iterators.IteratorChain;
|
|
|
|
import org.apache.commons.collections.iterators.IteratorEnumeration;
|
|
|
|
import org.apache.commons.collections.iterators.ListIteratorWrapper;
|
2002-11-21 18:08:27 -05:00
|
|
|
import org.apache.commons.collections.iterators.LoopingIterator;
|
2002-12-13 07:04:16 -05:00
|
|
|
import org.apache.commons.collections.iterators.ObjectArrayIterator;
|
|
|
|
import org.apache.commons.collections.iterators.ObjectArrayListIterator;
|
2002-08-17 07:38:53 -04:00
|
|
|
import org.apache.commons.collections.iterators.SingletonIterator;
|
|
|
|
import org.apache.commons.collections.iterators.SingletonListIterator;
|
|
|
|
import org.apache.commons.collections.iterators.TransformIterator;
|
2003-11-08 14:26:29 -05:00
|
|
|
import org.apache.commons.collections.iterators.UnmodifiableIterator;
|
|
|
|
import org.apache.commons.collections.iterators.UnmodifiableListIterator;
|
|
|
|
import org.apache.commons.collections.iterators.UnmodifiableMapIterator;
|
2003-05-16 10:40:56 -04:00
|
|
|
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Provides static utility methods and decorators for {@link Iterator}
|
2004-01-08 17:18:16 -05:00
|
|
|
* instances. The implementations are provided in the iterators subpackage.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
2003-01-10 15:21:25 -05:00
|
|
|
* @since Commons Collections 2.1
|
2004-01-14 16:43:18 -05:00
|
|
|
* @version $Revision: 1.21 $ $Date: 2004/01/14 21:43:03 $
|
2003-01-15 16:55:43 -05:00
|
|
|
*
|
|
|
|
* @author Stephen Colebourne
|
2003-09-28 23:38:44 -04:00
|
|
|
* @author Phil Steitz
|
2002-08-17 07:38:53 -04:00
|
|
|
*/
|
|
|
|
public class IteratorUtils {
|
|
|
|
// validation is done in this class in certain cases because the
|
|
|
|
// public classes allow invalid states
|
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
/**
|
|
|
|
* An iterator over no elements
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static final ResettableIterator EMPTY_ITERATOR = new EmptyIterator();
|
2002-08-17 18:14:22 -04:00
|
|
|
/**
|
|
|
|
* A list iterator over no elements
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static final ResettableListIterator EMPTY_LIST_ITERATOR = new EmptyListIterator();
|
2003-11-08 14:26:29 -05:00
|
|
|
/**
|
|
|
|
* An ordered iterator over no elements
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static final OrderedIterator EMPTY_ORDERED_ITERATOR = new EmptyOrderedIterator();
|
2003-11-02 10:27:54 -05:00
|
|
|
/**
|
|
|
|
* A map iterator over no elements
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static final MapIterator EMPTY_MAP_ITERATOR = new EmptyMapIterator();
|
2003-11-08 13:43:13 -05:00
|
|
|
/**
|
2003-11-08 14:26:29 -05:00
|
|
|
* An ordered map iterator over no elements
|
2003-11-08 13:43:13 -05:00
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static final OrderedMapIterator EMPTY_ORDERED_MAP_ITERATOR = new EmptyOrderedMapIterator();
|
2002-08-17 18:14:22 -04:00
|
|
|
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
2004-01-05 17:19:51 -05:00
|
|
|
* IteratorUtils is not normally instantiated.
|
2002-08-17 07:38:53 -04:00
|
|
|
*/
|
2004-01-05 17:19:51 -05:00
|
|
|
public IteratorUtils() {
|
2002-08-17 07:38:53 -04:00
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Empty
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an empty iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid iterator object that will iterate over
|
|
|
|
* nothing.
|
|
|
|
*
|
|
|
|
* @return an iterator over nothing
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator emptyIterator() {
|
2003-11-02 10:27:54 -05:00
|
|
|
return EMPTY_ITERATOR;
|
2002-08-17 07:38:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an empty list iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid list iterator object that will iterate
|
|
|
|
* over nothing.
|
|
|
|
*
|
|
|
|
* @return a list iterator over nothing
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator emptyListIterator() {
|
2003-11-02 10:27:54 -05:00
|
|
|
return EMPTY_LIST_ITERATOR;
|
|
|
|
}
|
|
|
|
|
2003-11-08 14:26:29 -05:00
|
|
|
/**
|
|
|
|
* Gets an empty ordered iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid iterator object that will iterate
|
|
|
|
* over nothing.
|
|
|
|
*
|
|
|
|
* @return an ordered iterator over nothing
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static OrderedIterator emptyOrderedIterator() {
|
2003-11-08 14:26:29 -05:00
|
|
|
return EMPTY_ORDERED_ITERATOR;
|
|
|
|
}
|
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
/**
|
|
|
|
* Gets an empty map iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid map iterator object that will iterate
|
|
|
|
* over nothing.
|
|
|
|
*
|
2003-11-08 14:26:29 -05:00
|
|
|
* @return a map iterator over nothing
|
2003-11-02 10:27:54 -05:00
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static MapIterator emptyMapIterator() {
|
2003-11-02 10:27:54 -05:00
|
|
|
return EMPTY_MAP_ITERATOR;
|
2002-08-17 07:38:53 -04:00
|
|
|
}
|
|
|
|
|
2003-11-08 13:43:13 -05:00
|
|
|
/**
|
|
|
|
* Gets an empty ordered map iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid map iterator object that will iterate
|
|
|
|
* over nothing.
|
|
|
|
*
|
2003-11-08 14:26:29 -05:00
|
|
|
* @return a map iterator over nothing
|
2003-11-08 13:43:13 -05:00
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static OrderedMapIterator emptyOrderedMapIterator() {
|
2003-11-08 13:43:13 -05:00
|
|
|
return EMPTY_ORDERED_MAP_ITERATOR;
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Singleton
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets a singleton iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid iterator object that will iterate over
|
|
|
|
* the specified object.
|
|
|
|
*
|
|
|
|
* @param object the single object over which to iterate
|
|
|
|
* @return a singleton iterator over the object
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator singletonIterator(Object object) {
|
2002-08-17 07:38:53 -04:00
|
|
|
return new SingletonIterator(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a singleton list iterator.
|
|
|
|
* <p>
|
|
|
|
* This iterator is a valid list iterator object that will iterate over
|
|
|
|
* the specified object.
|
|
|
|
*
|
|
|
|
* @param object the single object over which to iterate
|
|
|
|
* @return a singleton list iterator over the object
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ListIterator singletonListIterator(Object object) {
|
2002-08-17 07:38:53 -04:00
|
|
|
return new SingletonListIterator(object);
|
|
|
|
}
|
|
|
|
|
2002-12-13 07:04:16 -05:00
|
|
|
// Arrays
|
2003-11-14 17:58:27 -05:00
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
2002-12-13 07:04:16 -05:00
|
|
|
* Gets an iterator over an object array.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @return an iterator over the array
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object[] array) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayIterator(array);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator over an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @return an iterator over the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object array) {
|
2002-08-17 07:38:53 -04:00
|
|
|
return new ArrayIterator(array);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2002-12-13 07:04:16 -05:00
|
|
|
* Gets an iterator over the end part of an object array.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @return an iterator over part of the array
|
2003-09-28 23:38:44 -04:00
|
|
|
* @throws IndexOutOfBoundsException if start is less than zero or greater
|
|
|
|
* than the length of the array
|
2002-08-17 07:38:53 -04:00
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object[] array, int start) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayIterator(array, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator over the end part of an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @return an iterator over part of the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
2003-09-28 23:38:44 -04:00
|
|
|
* @throws IndexOutOfBoundsException if start is less than zero or greater
|
|
|
|
* than the length of the array
|
2002-12-13 07:04:16 -05:00
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object array, int start) {
|
2002-08-17 07:38:53 -04:00
|
|
|
return new ArrayIterator(array, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2002-12-13 07:04:16 -05:00
|
|
|
* Gets an iterator over part of an object array.
|
2002-08-17 07:38:53 -04:00
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @param end the index to finish iterating at
|
|
|
|
* @return an iterator over part of the array
|
2002-12-13 07:04:16 -05:00
|
|
|
* @throws IndexOutOfBoundsException if array bounds are invalid
|
|
|
|
* @throws IllegalArgumentException if end is before start
|
2002-08-17 07:38:53 -04:00
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object[] array, int start, int end) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayIterator(array, start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator over part of an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @param end the index to finish iterating at
|
|
|
|
* @return an iterator over part of the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
|
|
|
* @throws IndexOutOfBoundsException if array bounds are invalid
|
|
|
|
* @throws IllegalArgumentException if end is before start
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator arrayIterator(Object array, int start, int end) {
|
2002-08-17 07:38:53 -04:00
|
|
|
return new ArrayIterator(array, start, end);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
//-----------------------------------------------------------------------
|
2002-12-13 07:04:16 -05:00
|
|
|
/**
|
|
|
|
* Gets a list iterator over an object array.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @return a list iterator over the array
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object[] array) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayListIterator(array);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator over an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @return a list iterator over the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object array) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ArrayListIterator(array);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator over the end part of an object array.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @return a list iterator over part of the array
|
|
|
|
* @throws IndexOutOfBoundsException if start is less than zero
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object[] array, int start) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayListIterator(array, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator over the end part of an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @return a list iterator over part of the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
|
|
|
* @throws IndexOutOfBoundsException if start is less than zero
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object array, int start) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ArrayListIterator(array, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator over part of an object array.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @param end the index to finish iterating at
|
|
|
|
* @return a list iterator over part of the array
|
|
|
|
* @throws IndexOutOfBoundsException if array bounds are invalid
|
|
|
|
* @throws IllegalArgumentException if end is before start
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object[] array, int start, int end) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayListIterator(array, start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator over part of an object or primitive array.
|
|
|
|
* <p>
|
|
|
|
* This method will handle primitive arrays as well as object arrays.
|
|
|
|
* The primitives will be wrapped in the appropriate wrapper class.
|
|
|
|
*
|
|
|
|
* @param array the array over which to iterate
|
|
|
|
* @param start the index to start iterating at
|
|
|
|
* @param end the index to finish iterating at
|
|
|
|
* @return a list iterator over part of the array
|
|
|
|
* @throws IllegalArgumentException if the array is not an array
|
|
|
|
* @throws IndexOutOfBoundsException if array bounds are invalid
|
|
|
|
* @throws IllegalArgumentException if end is before start
|
|
|
|
* @throws NullPointerException if array is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableListIterator arrayListIterator(Object array, int start, int end) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ArrayListIterator(array, start, end);
|
|
|
|
}
|
2002-12-08 10:42:35 -05:00
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Unmodifiable
|
|
|
|
//-----------------------------------------------------------------------
|
2002-12-08 10:42:35 -05:00
|
|
|
/**
|
|
|
|
* Gets an immutable version of an {@link Iterator}. The returned object
|
2003-01-10 15:21:25 -05:00
|
|
|
* will always throw an {@link UnsupportedOperationException} for
|
|
|
|
* the {@link Iterator#remove} method.
|
2002-12-08 10:42:35 -05:00
|
|
|
*
|
2003-01-15 16:55:43 -05:00
|
|
|
* @param iterator the iterator to make immutable
|
|
|
|
* @return an immutable version of the iterator
|
2002-12-08 10:42:35 -05:00
|
|
|
*/
|
|
|
|
public static Iterator unmodifiableIterator(Iterator iterator) {
|
2003-11-08 14:26:29 -05:00
|
|
|
return UnmodifiableIterator.decorate(iterator);
|
2002-12-08 10:42:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2003-01-10 15:21:25 -05:00
|
|
|
* Gets an immutable version of a {@link ListIterator}. The returned object
|
|
|
|
* will always throw an {@link UnsupportedOperationException} for
|
|
|
|
* the {@link Iterator#remove}, {@link ListIterator#add} and
|
|
|
|
* {@link ListIterator#set} methods.
|
2002-12-08 10:42:35 -05:00
|
|
|
*
|
2003-01-15 16:55:43 -05:00
|
|
|
* @param listIterator the iterator to make immutable
|
|
|
|
* @return an immutable version of the iterator
|
2002-12-08 10:42:35 -05:00
|
|
|
*/
|
|
|
|
public static ListIterator unmodifiableListIterator(ListIterator listIterator) {
|
2003-11-08 14:26:29 -05:00
|
|
|
return UnmodifiableListIterator.decorate(listIterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an immutable version of a {@link MapIterator}. The returned object
|
|
|
|
* will always throw an {@link UnsupportedOperationException} for
|
|
|
|
* the {@link Iterator#remove}, {@link MapIterator#setValue(Object)} methods.
|
|
|
|
*
|
|
|
|
* @param mapIterator the iterator to make immutable
|
|
|
|
* @return an immutable version of the iterator
|
|
|
|
*/
|
|
|
|
public static MapIterator unmodifiableMapIterator(MapIterator mapIterator) {
|
|
|
|
return UnmodifiableMapIterator.decorate(mapIterator);
|
2002-12-08 10:42:35 -05:00
|
|
|
}
|
2002-08-17 07:38:53 -04:00
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Chained
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an iterator that iterates through two {@link Iterator}s
|
|
|
|
* one after another.
|
|
|
|
*
|
|
|
|
* @param iterator1 the first iterators to use, not null
|
|
|
|
* @param iterator2 the first iterators to use, not null
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if either iterator is null
|
|
|
|
*/
|
|
|
|
public static Iterator chainedIterator(Iterator iterator1, Iterator iterator2) {
|
|
|
|
return new IteratorChain(iterator1, iterator2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator that iterates through an array of {@link Iterator}s
|
|
|
|
* one after another.
|
|
|
|
*
|
|
|
|
* @param iterators the iterators to use, not null or empty or contain nulls
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if iterators array is null or contains a null
|
|
|
|
*/
|
|
|
|
public static Iterator chainedIterator(Iterator[] iterators) {
|
|
|
|
return new IteratorChain(iterators);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator that iterates through a collections of {@link Iterator}s
|
|
|
|
* one after another.
|
|
|
|
*
|
|
|
|
* @param iterators the iterators to use, not null or empty or contain nulls
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if iterators collection is null or contains a null
|
|
|
|
* @throws ClassCastException if the iterators collection contains the wrong object type
|
|
|
|
*/
|
|
|
|
public static Iterator chainedIterator(Collection iterators) {
|
|
|
|
return new IteratorChain(iterators);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Collated
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an iterator that provides an ordered iteration over the elements
|
|
|
|
* contained in a collection of ordered {@link Iterator}s.
|
|
|
|
* <p>
|
|
|
|
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
|
2002-08-19 17:56:18 -04:00
|
|
|
* the {@link Iterator#next()} method will return the lesser of
|
2002-08-17 07:38:53 -04:00
|
|
|
* <code>A.next()</code> and <code>B.next()</code>.
|
|
|
|
* <p>
|
|
|
|
* The comparator is optional. If null is specified then natural order is used.
|
|
|
|
*
|
|
|
|
* @param comparator the comparator to use, may be null for natural order
|
|
|
|
* @param iterator1 the first iterators to use, not null
|
|
|
|
* @param iterator2 the first iterators to use, not null
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if either iterator is null
|
|
|
|
*/
|
|
|
|
public static Iterator collatedIterator(Comparator comparator, Iterator iterator1, Iterator iterator2) {
|
|
|
|
return new CollatingIterator(comparator, iterator1, iterator2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator that provides an ordered iteration over the elements
|
|
|
|
* contained in an array of {@link Iterator}s.
|
|
|
|
* <p>
|
|
|
|
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
|
2002-08-19 17:56:18 -04:00
|
|
|
* the {@link Iterator#next()} method will return the lesser of
|
2002-08-17 07:38:53 -04:00
|
|
|
* <code>A.next()</code> and <code>B.next()</code> and so on.
|
|
|
|
* <p>
|
|
|
|
* The comparator is optional. If null is specified then natural order is used.
|
|
|
|
*
|
|
|
|
* @param comparator the comparator to use, may be null for natural order
|
|
|
|
* @param iterators the iterators to use, not null or empty or contain nulls
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if iterators array is null or contains a null
|
|
|
|
*/
|
|
|
|
public static Iterator collatedIterator(Comparator comparator, Iterator[] iterators) {
|
|
|
|
return new CollatingIterator(comparator, iterators);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator that provides an ordered iteration over the elements
|
|
|
|
* contained in a collection of {@link Iterator}s.
|
|
|
|
* <p>
|
|
|
|
* Given two ordered {@link Iterator}s <code>A</code> and <code>B</code>,
|
2002-08-19 17:56:18 -04:00
|
|
|
* the {@link Iterator#next()} method will return the lesser of
|
2002-08-17 07:38:53 -04:00
|
|
|
* <code>A.next()</code> and <code>B.next()</code> and so on.
|
|
|
|
* <p>
|
|
|
|
* The comparator is optional. If null is specified then natural order is used.
|
|
|
|
*
|
|
|
|
* @param comparator the comparator to use, may be null for natural order
|
|
|
|
* @param iterators the iterators to use, not null or empty or contain nulls
|
|
|
|
* @return a combination iterator over the iterators
|
|
|
|
* @throws NullPointerException if iterators collection is null or contains a null
|
|
|
|
* @throws ClassCastException if the iterators collection contains the wrong object type
|
|
|
|
*/
|
|
|
|
public static Iterator collatedIterator(Comparator comparator, Collection iterators) {
|
|
|
|
return new CollatingIterator(comparator, iterators);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Transformed
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an iterator that transforms the elements of another iterator.
|
|
|
|
* <p>
|
|
|
|
* The transformation occurs during the next() method and the underlying
|
|
|
|
* iterator is unaffected by the transformation.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @param transform the transform to use, not null
|
|
|
|
* @throws NullPointerException if either parameter is null
|
|
|
|
*/
|
|
|
|
public static Iterator transformedIterator(Iterator iterator, Transformer transform) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
if (transform == null) {
|
|
|
|
throw new NullPointerException("Transformer must not be null");
|
|
|
|
}
|
|
|
|
return new TransformIterator(iterator, transform);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Filtered
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an iterator that filters another iterator.
|
|
|
|
* <p>
|
|
|
|
* The returned iterator will only return objects that match the specified
|
|
|
|
* filtering predicate.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @param predicate the predicate to use as a filter, not null
|
|
|
|
* @throws NullPointerException if either parameter is null
|
|
|
|
*/
|
|
|
|
public static Iterator filteredIterator(Iterator iterator, Predicate predicate) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
if (predicate == null) {
|
|
|
|
throw new NullPointerException("Predicate must not be null");
|
|
|
|
}
|
|
|
|
return new FilterIterator(iterator, predicate);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list iterator that filters another list iterator.
|
|
|
|
* <p>
|
|
|
|
* The returned iterator will only return objects that match the specified
|
|
|
|
* filtering predicate.
|
|
|
|
*
|
|
|
|
* @param listIterator the list iterator to use, not null
|
|
|
|
* @param predicate the predicate to use as a filter, not null
|
|
|
|
* @throws NullPointerException if either parameter is null
|
|
|
|
*/
|
|
|
|
public static ListIterator filteredListIterator(ListIterator listIterator, Predicate predicate) {
|
|
|
|
if (listIterator == null) {
|
|
|
|
throw new NullPointerException("ListIterator must not be null");
|
|
|
|
}
|
|
|
|
if (predicate == null) {
|
|
|
|
throw new NullPointerException("Predicate must not be null");
|
|
|
|
}
|
|
|
|
return new FilterListIterator(listIterator, predicate);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Looping
|
|
|
|
//-----------------------------------------------------------------------
|
2002-11-21 18:08:27 -05:00
|
|
|
/**
|
|
|
|
* Gets an iterator that loops continuously over the supplied collection.
|
|
|
|
* <p>
|
|
|
|
* The iterator will only stop looping if the remove method is called
|
|
|
|
* enough times to empty the collection, or if the collection is empty
|
|
|
|
* to start with.
|
|
|
|
*
|
|
|
|
* @param coll the collection to iterate over, not null
|
|
|
|
* @throws NullPointerException if the collection is null
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
public static ResettableIterator loopingIterator(Collection coll) {
|
2002-11-21 18:08:27 -05:00
|
|
|
if (coll == null) {
|
|
|
|
throw new NullPointerException("Collection must not be null");
|
|
|
|
}
|
|
|
|
return new LoopingIterator(coll);
|
|
|
|
}
|
|
|
|
|
2003-11-14 17:58:27 -05:00
|
|
|
// Views
|
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets an iterator that provides an iterator view of the given enumeration.
|
|
|
|
*
|
|
|
|
* @param enumeration the enumeration to use
|
|
|
|
*/
|
2002-08-17 18:14:22 -04:00
|
|
|
public static Iterator asIterator(Enumeration enumeration) {
|
2002-08-17 07:38:53 -04:00
|
|
|
if (enumeration == null) {
|
|
|
|
throw new NullPointerException("Enumeration must not be null");
|
|
|
|
}
|
|
|
|
return new EnumerationIterator(enumeration);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an iterator that provides an iterator view of the given enumeration
|
|
|
|
* that will remove elements from the specified collection.
|
|
|
|
*
|
|
|
|
* @param enumeration the enumeration to use
|
2003-09-29 18:44:14 -04:00
|
|
|
* @param removeCollection the collection to remove elements from
|
2002-08-17 07:38:53 -04:00
|
|
|
*/
|
2002-08-17 18:14:22 -04:00
|
|
|
public static Iterator asIterator(Enumeration enumeration, Collection removeCollection) {
|
2002-08-17 07:38:53 -04:00
|
|
|
if (enumeration == null) {
|
|
|
|
throw new NullPointerException("Enumeration must not be null");
|
|
|
|
}
|
|
|
|
if (removeCollection == null) {
|
|
|
|
throw new NullPointerException("Collection must not be null");
|
|
|
|
}
|
|
|
|
return new EnumerationIterator(enumeration, removeCollection);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an enumeration that wraps an iterator.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @throws NullPointerException if iterator is null
|
|
|
|
*/
|
2002-08-17 18:14:22 -04:00
|
|
|
public static Enumeration asEnumeration(Iterator iterator) {
|
2002-08-17 07:38:53 -04:00
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
return new IteratorEnumeration(iterator);
|
|
|
|
}
|
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
/**
|
|
|
|
* Gets a list iterator based on a simple iterator.
|
|
|
|
* <p>
|
|
|
|
* As the wrapped Iterator is traversed, a LinkedList of its values is
|
|
|
|
* cached, permitting all required operations of ListIterator.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @throws NullPointerException if iterator parameter is null
|
|
|
|
*/
|
|
|
|
public static ListIterator toListIterator(Iterator iterator) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
return new ListIteratorWrapper(iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an array based on an iterator.
|
|
|
|
* <p>
|
|
|
|
* As the wrapped Iterator is traversed, an ArrayList of its values is
|
|
|
|
* created. At the end, this is converted to an array.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @throws NullPointerException if iterator parameter is null
|
|
|
|
*/
|
|
|
|
public static Object[] toArray(Iterator iterator) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
List list = toList(iterator, 100);
|
|
|
|
return list.toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an array based on an iterator.
|
|
|
|
* <p>
|
|
|
|
* As the wrapped Iterator is traversed, an ArrayList of its values is
|
|
|
|
* created. At the end, this is converted to an array.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @param arrayClass the class of array to create
|
|
|
|
* @throws NullPointerException if iterator parameter is null
|
|
|
|
* @throws NullPointerException if arrayClass is null
|
|
|
|
* @throws ClassCastException if the arrayClass is invalid
|
|
|
|
*/
|
|
|
|
public static Object[] toArray(Iterator iterator, Class arrayClass) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
if (arrayClass == null) {
|
|
|
|
throw new NullPointerException("Array class must not be null");
|
|
|
|
}
|
|
|
|
List list = toList(iterator, 100);
|
|
|
|
return list.toArray((Object[]) Array.newInstance(arrayClass, list.size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list based on an iterator.
|
|
|
|
* <p>
|
|
|
|
* As the wrapped Iterator is traversed, an ArrayList of its values is
|
|
|
|
* created. At the end, the list is returned.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @throws NullPointerException if iterator parameter is null
|
|
|
|
*/
|
|
|
|
public static List toList(Iterator iterator) {
|
|
|
|
return toList(iterator, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list based on an iterator.
|
|
|
|
* <p>
|
|
|
|
* As the wrapped Iterator is traversed, an ArrayList of its values is
|
|
|
|
* created. At the end, the list is returned.
|
|
|
|
*
|
|
|
|
* @param iterator the iterator to use, not null
|
|
|
|
* @param estimatedSize the initial size of the ArrayList
|
|
|
|
* @throws NullPointerException if iterator parameter is null
|
|
|
|
* @throws IllegalArgumentException if the size is less than 1
|
|
|
|
*/
|
|
|
|
public static List toList(Iterator iterator, int estimatedSize) {
|
|
|
|
if (iterator == null) {
|
|
|
|
throw new NullPointerException("Iterator must not be null");
|
|
|
|
}
|
|
|
|
if (estimatedSize < 1) {
|
|
|
|
throw new IllegalArgumentException("Estimated size must be greater than 0");
|
|
|
|
}
|
|
|
|
List list = new ArrayList(estimatedSize);
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
list.add(iterator.next());
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2002-08-17 07:38:53 -04:00
|
|
|
/**
|
|
|
|
* Gets a suitable Iterator for the given object.
|
|
|
|
* <p>
|
|
|
|
* This method can handles objects as follows
|
|
|
|
* <ul>
|
|
|
|
* <li>null - empty iterator
|
|
|
|
* <li>Iterator - returned directly
|
|
|
|
* <li>Enumeration - wrapped
|
|
|
|
* <li>Collection - iterator from collection returned
|
|
|
|
* <li>Map - values iterator returned
|
|
|
|
* <li>Dictionary - values (elements) enumeration returned as iterator
|
|
|
|
* <li>array - iterator over array returned
|
|
|
|
* <li>object with iterator() public method accessed by reflection
|
|
|
|
* <li>object - singleton iterator
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
* @param obj the object to convert to an iterator
|
|
|
|
* @return a suitable iterator, never null
|
|
|
|
*/
|
|
|
|
public static Iterator getIterator(Object obj) {
|
|
|
|
if (obj == null) {
|
|
|
|
return emptyIterator();
|
|
|
|
|
|
|
|
} else if (obj instanceof Iterator) {
|
|
|
|
return (Iterator) obj;
|
|
|
|
|
|
|
|
} else if (obj instanceof Collection) {
|
|
|
|
return ((Collection) obj).iterator();
|
|
|
|
|
|
|
|
} else if (obj instanceof Object[]) {
|
2002-12-13 07:04:16 -05:00
|
|
|
return new ObjectArrayIterator((Object[]) obj);
|
2002-08-17 07:38:53 -04:00
|
|
|
|
|
|
|
} else if (obj instanceof Enumeration) {
|
|
|
|
return new EnumerationIterator((Enumeration) obj);
|
|
|
|
|
|
|
|
} else if (obj instanceof Map) {
|
|
|
|
return ((Map) obj).values().iterator();
|
|
|
|
|
|
|
|
} else if (obj instanceof Dictionary) {
|
|
|
|
return new EnumerationIterator(((Dictionary) obj).elements());
|
|
|
|
|
|
|
|
} else if (obj != null && obj.getClass().isArray()) {
|
|
|
|
return new ArrayIterator(obj);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
Method method = obj.getClass().getMethod("iterator", null);
|
|
|
|
if (Iterator.class.isAssignableFrom(method.getReturnType())) {
|
|
|
|
Iterator it = (Iterator) method.invoke(obj, null);
|
|
|
|
if (it != null) {
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception ex) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
return singletonIterator(obj);
|
|
|
|
}
|
|
|
|
}
|
2002-08-17 18:14:22 -04:00
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 18:14:22 -04:00
|
|
|
/**
|
|
|
|
* EmptyIterator class
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
static class EmptyIterator implements ResettableIterator {
|
2002-08-17 18:14:22 -04:00
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
EmptyIterator() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
public boolean hasNext() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object next() {
|
2003-11-02 10:27:54 -05:00
|
|
|
throw new NoSuchElementException("Iterator contains no elements");
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public void remove() {
|
2003-11-02 10:27:54 -05:00
|
|
|
throw new IllegalStateException("Iterator contains no elements");
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
2003-01-15 16:55:43 -05:00
|
|
|
|
|
|
|
public void reset() {
|
|
|
|
// do nothing
|
|
|
|
}
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
//-----------------------------------------------------------------------
|
2002-08-17 18:14:22 -04:00
|
|
|
/**
|
|
|
|
* EmptyListIterator class
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
static class EmptyListIterator extends EmptyIterator implements ResettableListIterator {
|
2002-08-17 18:14:22 -04:00
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
EmptyListIterator() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
public boolean hasPrevious() {
|
|
|
|
return false;
|
|
|
|
}
|
2002-08-17 07:38:53 -04:00
|
|
|
|
2002-08-17 18:14:22 -04:00
|
|
|
public Object previous() {
|
2003-11-02 10:27:54 -05:00
|
|
|
throw new NoSuchElementException("Iterator contains no elements");
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public int nextIndex() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int previousIndex() {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void add(Object o) {
|
|
|
|
throw new UnsupportedOperationException("add() not supported for empty Iterator");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void set(Object o) {
|
2003-11-02 10:27:54 -05:00
|
|
|
throw new IllegalStateException("Iterator contains no elements");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-08 14:26:29 -05:00
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* EmptyOrderedIterator class
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
static class EmptyOrderedIterator extends EmptyIterator implements OrderedIterator, ResettableIterator {
|
2003-11-08 14:26:29 -05:00
|
|
|
|
|
|
|
EmptyOrderedIterator() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasPrevious() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object previous() {
|
|
|
|
throw new NoSuchElementException("Iterator contains no elements");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* EmptyMapIterator class
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
static class EmptyMapIterator extends EmptyIterator implements MapIterator, ResettableIterator {
|
2003-11-02 10:27:54 -05:00
|
|
|
|
|
|
|
EmptyMapIterator() {
|
|
|
|
super();
|
|
|
|
}
|
2003-11-08 13:43:13 -05:00
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
public Object getKey() {
|
|
|
|
throw new IllegalStateException("Iterator contains no elements");
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object getValue() {
|
|
|
|
throw new IllegalStateException("Iterator contains no elements");
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
|
|
|
|
2003-11-02 10:27:54 -05:00
|
|
|
public Object setValue(Object value) {
|
|
|
|
throw new IllegalStateException("Iterator contains no elements");
|
|
|
|
}
|
2003-11-08 13:43:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* EmptyOrderedMapIterator class
|
|
|
|
*/
|
2003-11-14 17:58:27 -05:00
|
|
|
static class EmptyOrderedMapIterator extends EmptyMapIterator implements OrderedMapIterator, ResettableIterator {
|
2003-11-02 10:27:54 -05:00
|
|
|
|
2003-11-08 13:43:13 -05:00
|
|
|
EmptyOrderedMapIterator() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasPrevious() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object previous() {
|
|
|
|
throw new NoSuchElementException("Iterator contains no elements");
|
2003-11-02 10:27:54 -05:00
|
|
|
}
|
2002-08-17 18:14:22 -04:00
|
|
|
}
|
2002-12-08 10:42:35 -05:00
|
|
|
|
2002-08-17 07:38:53 -04:00
|
|
|
}
|