Package | Description |
---|---|
org.apache.cassandra.db | |
org.apache.cassandra.db.partitions | |
org.apache.cassandra.db.rows |
Modifier and Type | Class and Description |
---|---|
static class |
SimpleBuilders.RowBuilder |
Modifier and Type | Method and Description |
---|---|
Row.SimpleBuilder |
SimpleBuilders.RowBuilder.add(java.lang.String columnName,
java.lang.Object value) |
Row.SimpleBuilder |
SimpleBuilders.RowBuilder.appendAll(java.lang.String columnName,
java.lang.Object value) |
Row.SimpleBuilder |
SimpleBuilders.RowBuilder.delete() |
Row.SimpleBuilder |
SimpleBuilders.RowBuilder.delete(java.lang.String columnName) |
Row.SimpleBuilder |
SimpleBuilders.RowBuilder.noPrimaryKeyLivenessInfo() |
Row.SimpleBuilder |
SimpleBuilders.PartitionUpdateBuilder.row(java.lang.Object... clusteringValues) |
Modifier and Type | Method and Description |
---|---|
Row.SimpleBuilder |
PartitionUpdate.SimpleBuilder.row(java.lang.Object... clusteringValues)
Adds the row identifier by the provided clustering and return a builder for that row.
|
Modifier and Type | Method and Description |
---|---|
Row.SimpleBuilder |
Row.SimpleBuilder.add(java.lang.String columnName,
java.lang.Object value)
Adds a value to a given column.
|
Row.SimpleBuilder |
Row.SimpleBuilder.appendAll(java.lang.String columnName,
java.lang.Object value)
Appends new values to a given non-frozen collection column.
|
Row.SimpleBuilder |
Row.SimpleBuilder.delete()
Deletes the whole row.
|
Row.SimpleBuilder |
Row.SimpleBuilder.delete(java.lang.String columnName)
Removes the value for a given column (creating a tombstone).
|
Row.SimpleBuilder |
Row.SimpleBuilder.noPrimaryKeyLivenessInfo()
Don't include any primary key
LivenessInfo in the built row. |
static Row.SimpleBuilder |
Rows.simpleBuilder(CFMetaData metadata,
java.lang.Object... clusteringValues)
Creates a new simple row builder.
|
Row.SimpleBuilder |
Row.SimpleBuilder.timestamp(long timestamp)
Sets the timestamp to use for the following additions.
|
Row.SimpleBuilder |
Row.SimpleBuilder.ttl(int ttl)
Sets the ttl to use for the following additions.
|
Copyright © 2020 The Apache Software Foundation