All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.refcodes.io.SerializableListIteratorImpl Maven / Gradle / Ivy

Go to download

Artifact with commonly used I/O functionality and for connection related issues such as receiving or transmitting data in a unified way.

There is a newer version: 3.3.8
Show newest version
// /////////////////////////////////////////////////////////////////////////////
// REFCODES.ORG
// =============================================================================
// This code is copyright (c) by Siegfried Steiner, Munich, Germany and licensed
// under the following (see "http://en.wikipedia.org/wiki/Multi-licensing")
// licenses:
// =============================================================================
// GNU General Public License, v3.0 ("http://www.gnu.org/licenses/gpl-3.0.html")
// together with the GPL linking exception applied; as being applied by the GNU
// Classpath ("http://www.gnu.org/software/classpath/license.html")
// =============================================================================
// Apache License, v2.0 ("http://www.apache.org/licenses/LICENSE-2.0")
// =============================================================================
// Please contact the copyright holding author(s) of the software artifacts in
// question for licensing issues not being covered by the above listed licenses,
// also regarding commercial licensing models or regarding the compatibility
// with other open source licenses.
// /////////////////////////////////////////////////////////////////////////////

package org.refcodes.io;

import java.io.NotSerializableException;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;

/**
 * Makes the wrapped {@link ListIterator} serializable, else passing
 * {@link ListIterator} instances would cause an
 * {@link NotSerializableException} or similar. Use the
 * {@link SerializeUtility#toSerializable(Object)} to let you help to get
 * serializable instances.
 *
 * @param  The type of the instances managed by the {@link ListIterator}.
 */
public class SerializableListIteratorImpl implements ListIterator, Serializable {

	private static final long serialVersionUID = 1L;

	// /////////////////////////////////////////////////////////////////////////
	// VARIABLES:
	// /////////////////////////////////////////////////////////////////////////

	private List _list = new ArrayList();

	private transient ListIterator _listIterator = null;

	// /////////////////////////////////////////////////////////////////////////
	// CONSTRUCTORS:
	// /////////////////////////////////////////////////////////////////////////

	/**
	 * Instantiates a new serializable list iterator impl.
	 */
	public SerializableListIteratorImpl() {}

	/**
	 * Instantiates a new serializable list iterator impl.
	 *
	 * @param aListIterator the list iterator
	 */
	@SuppressWarnings({
			"unchecked", "rawtypes"
	})
	public SerializableListIteratorImpl( ListIterator aListIterator ) {
		assert (aListIterator != null);
		T eObj;
		while ( aListIterator.hasNext() ) {
			eObj = aListIterator.next();
			if ( (eObj instanceof ListIterator) && (!(eObj instanceof SerializableListIteratorImpl)) ) {
				eObj = (T) new SerializableListIteratorImpl( (ListIterator) eObj );
			}

			else if ( (eObj instanceof Iterator) && (!(eObj instanceof SerializableIteratorImpl)) ) {
				eObj = (T) new SerializableIteratorImpl( (Iterator) eObj );
			}
			_list.add( eObj );
		}
		_listIterator = _list.listIterator();
		_list = null;
	}

	// /////////////////////////////////////////////////////////////////////////
	// METHODS:
	// /////////////////////////////////////////////////////////////////////////

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void add( T value ) {
		_listIterator.add( value );
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public boolean hasNext() {
		return _listIterator.hasNext();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public boolean hasPrevious() {
		return _listIterator.hasPrevious();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public T next() {
		return _listIterator.next();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public int nextIndex() {
		return _listIterator.nextIndex();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public T previous() {
		return _listIterator.previous();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public int previousIndex() {
		return _listIterator.previousIndex();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void remove() {
		_listIterator.remove();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void set( T value ) {
		_listIterator.set( value );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy