Rhino.NativeIterator.WrappedJavaIterator.Next C# (CSharp) Method

Next() public method

public Next ( ) : object
return object
			public virtual object Next()
			{
				if (!iterator.HasNext())
				{
					// Out of values. Throw StopIteration.
					throw new JavaScriptException(NativeIterator.GetStopIterationObject(scope), null, 0);
				}
				return iterator.Next();
			}
NativeIterator.WrappedJavaIterator