Shim to allow us to implement scala.Iterator in Java. Scala 2.11+ has an AbstractIterator
class for this, but that class is private[scala] in 2.10. We need to explicitly fix this to
Row in order to work around a spurious IntelliJ compiler error. This cannot be an abstract
class because that leads to compilation errors under Scala 2.11.
Linear Supertypes
Iterator[T], TraversableOnce[T], GenTraversableOnce[T], AnyRef, Any
Ordering
Alphabetic
By Inheritance
Inherited
AbstractScalaRowIterator
Iterator
TraversableOnce
GenTraversableOnce
AnyRef
Any
Hide All
Show All
Visibility
Public
All
Instance Constructors
newAbstractScalaRowIterator()
Type Members
classGroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
Shim to allow us to implement scala.Iterator in Java. Scala 2.11+ has an AbstractIterator class for this, but that class is
private[scala]
in 2.10. We need to explicitly fix this toRow
in order to work around a spurious IntelliJ compiler error. This cannot be an abstract class because that leads to compilation errors under Scala 2.11.