Package org.apache.iceberg.deletes
Interface PositionDeleteIndex
- 
 public interface PositionDeleteIndex
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(long position)Set a deleted row position.voiddelete(long posStart, long posEnd)Set a range of deleted row positions.booleanisDeleted(long position)Checks whether a row at the position is deleted.booleanisEmpty()Returns true if this collection contains no element.
 
- 
- 
- 
Method Detail- 
deletevoid delete(long position) Set a deleted row position.- Parameters:
- position- the deleted row position
 
 - 
deletevoid delete(long posStart, long posEnd)Set a range of deleted row positions.- Parameters:
- posStart- inclusive beginning of position range
- posEnd- exclusive ending of position range
 
 - 
isDeletedboolean isDeleted(long position) Checks whether a row at the position is deleted.- Parameters:
- position- deleted row position
- Returns:
- whether the position is deleted
 
 - 
isEmptyboolean isEmpty() Returns true if this collection contains no element.
 
- 
 
-