Package de.innovationgate.utils

Examples of de.innovationgate.utils.SkippingIterator


            if (_currentValue != null) {
                _currentValue = null;
                nrOfElements--;
            }
            else if (_it instanceof SkippingIterator) {
                SkippingIterator skippy = (SkippingIterator) _it;
                return skippy.skip(nrOfElements);
            }
            else {
                if (_it.hasNext()) {
                    _it.next();
                }
View Full Code Here

TOP

Related Classes of de.innovationgate.utils.SkippingIterator

Copyright © 2018 www.massapicom. All rights reserved.
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.