Package org.apache.cassandra.db
Class EmptyIterators
- java.lang.Object
-
- org.apache.cassandra.db.EmptyIterators
-
public class EmptyIterators extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description EmptyIterators()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PartitionIterator
partition()
static RowIterator
row(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder)
static UnfilteredPartitionIterator
unfilteredPartition(TableMetadata metadata)
static UnfilteredRowIterator
unfilteredRow(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder)
static UnfilteredRowIterator
unfilteredRow(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder, Row staticRow, DeletionTime partitionDeletion)
-
-
-
Method Detail
-
unfilteredPartition
public static UnfilteredPartitionIterator unfilteredPartition(TableMetadata metadata)
-
partition
public static PartitionIterator partition()
-
unfilteredRow
public static UnfilteredRowIterator unfilteredRow(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder, Row staticRow, DeletionTime partitionDeletion)
-
unfilteredRow
public static UnfilteredRowIterator unfilteredRow(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder)
-
row
public static RowIterator row(TableMetadata metadata, DecoratedKey partitionKey, boolean isReverseOrder)
-
-