com.github.andyshao.lang.Iterator2Iterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.lang;
import java.util.Iterator;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Apr 25, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
* @param element type
*/
public class Iterator2Iterable implements Convert , Iterable> {
@Override
public Iterable convert(Iterator in) {
return () -> in;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy