Package org.apache.cassandra.db.rows
Class BTreeRow.Builder
- java.lang.Object
-
- org.apache.cassandra.db.rows.BTreeRow.Builder
-
- All Implemented Interfaces:
Row.Builder
- Enclosing class:
- BTreeRow
public static class BTreeRow.Builder extends java.lang.Object implements Row.Builder
-
-
Field Summary
Fields Modifier and Type Field Description protected Clustering<?>
clustering
protected Row.Deletion
deletion
protected LivenessInfo
primaryKeyLivenessInfo
-
Constructor Summary
Constructors Modifier Constructor Description protected
Builder(boolean isSorted)
protected
Builder(BTreeRow.Builder builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCell(Cell<?> cell)
Adds a cell to this builder.void
addComplexDeletion(ColumnMetadata column, DeletionTime complexDeletion)
Adds a complex deletion.void
addPrimaryKeyLivenessInfo(LivenessInfo info)
Adds the liveness information for the partition key columns of this row.void
addRowDeletion(Row.Deletion deletion)
Adds the deletion information for this row.Row
build()
Builds and return built row.Clustering<?>
clustering()
The clustering for the row that is currently being built.BTreeRow.Builder
copy()
Creates a copy of thisBuilder
.boolean
isSorted()
Whether the builder is a sorted one or not.void
newRow(Clustering<?> clustering)
Prepares the builder to build a new row of clusteringclustering
.protected void
reset()
-
-
-
Field Detail
-
clustering
protected Clustering<?> clustering
-
primaryKeyLivenessInfo
protected LivenessInfo primaryKeyLivenessInfo
-
deletion
protected Row.Deletion deletion
-
-
Constructor Detail
-
Builder
protected Builder(boolean isSorted)
-
Builder
protected Builder(BTreeRow.Builder builder)
-
-
Method Detail
-
copy
public BTreeRow.Builder copy()
Description copied from interface:Row.Builder
Creates a copy of thisBuilder
.- Specified by:
copy
in interfaceRow.Builder
- Returns:
- a copy of this
Builder
-
isSorted
public boolean isSorted()
Description copied from interface:Row.Builder
Whether the builder is a sorted one or not.- Specified by:
isSorted
in interfaceRow.Builder
- Returns:
- if the builder requires calls to be done in sorted order or not (see above).
-
newRow
public void newRow(Clustering<?> clustering)
Description copied from interface:Row.Builder
Prepares the builder to build a new row of clusteringclustering
.This should always be the first call for a given row.
- Specified by:
newRow
in interfaceRow.Builder
- Parameters:
clustering
- the clustering for the new row.
-
clustering
public Clustering<?> clustering()
Description copied from interface:Row.Builder
The clustering for the row that is currently being built.- Specified by:
clustering
in interfaceRow.Builder
- Returns:
- the clustering for the row that is currently being built, or
null
ifRow.Builder.newRow(org.apache.cassandra.db.Clustering<?>)
hasn't yet been called.
-
reset
protected void reset()
-
addPrimaryKeyLivenessInfo
public void addPrimaryKeyLivenessInfo(LivenessInfo info)
Description copied from interface:Row.Builder
Adds the liveness information for the partition key columns of this row. This call is optional (skipping it is equivalent to callingaddPartitionKeyLivenessInfo(LivenessInfo.NONE)
).- Specified by:
addPrimaryKeyLivenessInfo
in interfaceRow.Builder
- Parameters:
info
- the liveness information for the partition key columns of the built row.
-
addRowDeletion
public void addRowDeletion(Row.Deletion deletion)
Description copied from interface:Row.Builder
Adds the deletion information for this row. This call is optional and can be skipped if the row is not deleted.- Specified by:
addRowDeletion
in interfaceRow.Builder
- Parameters:
deletion
- the row deletion time, orDeletion.LIVE
if the row isn't deleted.
-
addCell
public void addCell(Cell<?> cell)
Description copied from interface:Row.Builder
Adds a cell to this builder.- Specified by:
addCell
in interfaceRow.Builder
- Parameters:
cell
- the cell to add.
-
addComplexDeletion
public void addComplexDeletion(ColumnMetadata column, DeletionTime complexDeletion)
Description copied from interface:Row.Builder
Adds a complex deletion.- Specified by:
addComplexDeletion
in interfaceRow.Builder
- Parameters:
column
- the column for which to add thecomplexDeletion
.complexDeletion
- the complex deletion time to add.
-
build
public Row build()
Description copied from interface:Row.Builder
Builds and return built row.- Specified by:
build
in interfaceRow.Builder
- Returns:
- the last row built by this builder.
-
-