Interface PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder
-
- Enclosing interface:
- PartitionUpdate.SimpleBuilder
public static interface PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderInterface to build range tombstone. By default, if no other methods are called, the represented range is inclusive of both start and end and includes everything (its start isBOTTOMand it's end isTOP).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderend(java.lang.Object... values)Sets the end for the built range using the provided values.PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderexclEnd()Sets the end of this range as exclusive.PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderexclStart()Sets the start of this range as exclusive.PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderinclEnd()Sets the end of this range as inclusive.PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderinclStart()Sets the start of this range as inclusive.PartitionUpdate.SimpleBuilder.RangeTombstoneBuilderstart(java.lang.Object... values)Sets the start for the built range using the provided values.
-
-
-
Method Detail
-
start
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder start(java.lang.Object... values)
Sets the start for the built range using the provided values.- Parameters:
values- the value for the start of the range. They act like theclusteringValuesargument of thePartitionUpdate.SimpleBuilder.row(Object...)method, except that it doesn't have to be a full clustering, it can only be a prefix.- Returns:
- this builder.
-
end
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder end(java.lang.Object... values)
Sets the end for the built range using the provided values.- Parameters:
values- the value for the end of the range. They act like theclusteringValuesargument of thePartitionUpdate.SimpleBuilder.row(Object...)method, except that it doesn't have to be a full clustering, it can only be a prefix.- Returns:
- this builder.
-
inclStart
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder inclStart()
Sets the start of this range as inclusive.This is the default and don't need to be called, but can for explicitness.
- Returns:
- this builder.
-
exclStart
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder exclStart()
Sets the start of this range as exclusive.- Returns:
- this builder.
-
inclEnd
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder inclEnd()
Sets the end of this range as inclusive.This is the default and don't need to be called, but can for explicitness.
- Returns:
- this builder.
-
exclEnd
PartitionUpdate.SimpleBuilder.RangeTombstoneBuilder exclEnd()
Sets the end of this range as exclusive.- Returns:
- this builder.
-
-