Interface Partition

    • Method Detail

      • partitionLevelDeletion

        DeletionTime partitionLevelDeletion()
      • isEmpty

        boolean isEmpty()
        Whether the partition object has no informations at all, including any deletion informations.
      • hasRows

        boolean hasRows()
        Whether the partition object has rows. This may be false but partition still be non-empty if it has a deletion.
      • getRow

        @Nullable
        Row getRow​(Clustering<?> clustering)
        Returns the row corresponding to the provided clustering, or null if there is not such row.
        Parameters:
        clustering - clustering key to search
        Returns:
        row corresponding to the clustering, it's either null or non-empty row.
      • unfilteredIterator

        UnfilteredRowIterator unfilteredIterator()
        Returns an UnfilteredRowIterator over all the rows/RT contained by this partition.
      • unfilteredIterator

        UnfilteredRowIterator unfilteredIterator​(ColumnFilter columns,
                                                 Slices slices,
                                                 boolean reversed)
        Returns an UnfilteredRowIterator over the rows/RT contained by this partition selected by the provided slices.
      • unfilteredIterator

        UnfilteredRowIterator unfilteredIterator​(ColumnFilter columns,
                                                 java.util.NavigableSet<Clustering<?>> clusteringsInQueryOrder,
                                                 boolean reversed)
        Returns an UnfilteredRowIterator over the rows/RT contained by this partition selected by the provided clusterings.