Get the current value in the sequence (the one returned by the most recent call on next()). This will be null before the first call of next(). This method does not change the state of the iterator.
@return the current item, the one most recently returned by a call onnext(). Returns null if next() has not been called, or if the end of the sequence has been reached.
@since 8.4
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.