Interface BaseRowIterator<U extends Unfiltered>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      RegularAndStaticColumns columns()
      A subset of the columns for the (static and regular) rows returned by this iterator.
      boolean isEmpty()
      Returns whether the provided iterator has no data.
      boolean isReverseOrder()
      Whether or not the rows returned by this iterator are in reversed clustering order.
      TableMetadata metadata()
      The metadata for the table this iterator on.
      DecoratedKey partitionKey()
      The partition key of the partition this in an iterator over.
      Row staticRow()
      The static part corresponding to this partition (this can be an empty row but cannot be null).
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, hasNext, next, remove
    • Method Detail

      • metadata

        TableMetadata metadata()
        The metadata for the table this iterator on.
      • isReverseOrder

        boolean isReverseOrder()
        Whether or not the rows returned by this iterator are in reversed clustering order.
      • columns

        RegularAndStaticColumns columns()
        A subset of the columns for the (static and regular) rows returned by this iterator. Every row returned by this iterator must guarantee that it has only those columns.
      • partitionKey

        DecoratedKey partitionKey()
        The partition key of the partition this in an iterator over.
      • staticRow

        Row staticRow()
        The static part corresponding to this partition (this can be an empty row but cannot be null).
      • isEmpty

        boolean isEmpty()
        Returns whether the provided iterator has no data.