Interface RowAccess<T>

All Superinterfaces:
Iterable<T>

@Private public interface RowAccess<T> extends Iterable<T>
Provide a way to access the inner buffer. The purpose is to reduce the elapsed time to move a large number of elements between collections.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if there are no elements.
    int
    Returns the number of elements in this list.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • isEmpty

      boolean isEmpty()
      Returns true if there are no elements.
    • size

      int size()
      Returns the number of elements in this list.