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

org.psjava.util.ConvertedDataIterable Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.psjava.util;

import java.util.Iterator;

public class ConvertedDataIterable {

	public static  Iterable create(final Iterable outerIterable, final DataConverter converter) {
		return new Iterable() {
			@Override
			public Iterator iterator() {
				return ConvertedDataIterator.create(outerIterable.iterator(), converter);
			}
		};
	}

	private ConvertedDataIterable() {
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy