Uses of Interface
org.apache.cassandra.db.rows.Row.SimpleBuilder
-
Packages that use Row.SimpleBuilder Package Description org.apache.cassandra.db org.apache.cassandra.db.partitions org.apache.cassandra.db.rows -
-
Uses of Row.SimpleBuilder in org.apache.cassandra.db
Classes in org.apache.cassandra.db that implement Row.SimpleBuilder Modifier and Type Class Description static classSimpleBuilders.RowBuilderMethods in org.apache.cassandra.db that return Row.SimpleBuilder Modifier and Type Method Description Row.SimpleBuilderSimpleBuilders.RowBuilder. add(java.lang.String columnName, java.lang.Object value)Row.SimpleBuilderSimpleBuilders.RowBuilder. appendAll(java.lang.String columnName, java.lang.Object value)Row.SimpleBuilderSimpleBuilders.RowBuilder. delete()Row.SimpleBuilderSimpleBuilders.RowBuilder. delete(java.lang.String columnName)Row.SimpleBuilderSimpleBuilders.RowBuilder. deletePrevious()Row.SimpleBuilderSimpleBuilders.RowBuilder. noPrimaryKeyLivenessInfo()Row.SimpleBuilderSimpleBuilders.PartitionUpdateBuilder. row(java.lang.Object... clusteringValues) -
Uses of Row.SimpleBuilder in org.apache.cassandra.db.partitions
Methods in org.apache.cassandra.db.partitions that return Row.SimpleBuilder Modifier and Type Method Description Row.SimpleBuilderPartitionUpdate.SimpleBuilder. row(java.lang.Object... clusteringValues)Adds the row identifier by the provided clustering and return a builder for that row. -
Uses of Row.SimpleBuilder in org.apache.cassandra.db.rows
Methods in org.apache.cassandra.db.rows that return Row.SimpleBuilder Modifier and Type Method Description Row.SimpleBuilderRow.SimpleBuilder. add(java.lang.String columnName, java.lang.Object value)Adds a value to a given column.Row.SimpleBuilderRow.SimpleBuilder. appendAll(java.lang.String columnName, java.lang.Object value)Appends new values to a given non-frozen collection column.Row.SimpleBuilderRow.SimpleBuilder. delete()Deletes the whole row.Row.SimpleBuilderRow.SimpleBuilder. delete(java.lang.String columnName)Removes the value for a given column (creating a tombstone).Row.SimpleBuilderRow.SimpleBuilder. deletePrevious()Deletes the whole row with a timestamp that is just before the new data's timestamp, to make sure no expired data remains on the row.Row.SimpleBuilderRow.SimpleBuilder. noPrimaryKeyLivenessInfo()Don't include any primary keyLivenessInfoin the built row.static Row.SimpleBuilderRows. simpleBuilder(TableMetadata metadata, java.lang.Object... clusteringValues)Creates a new simple row builder.Row.SimpleBuilderRow.SimpleBuilder. timestamp(long timestamp)Sets the timestamp to use for the following additions.Row.SimpleBuilderRow.SimpleBuilder. ttl(int ttl)Sets the ttl to use for the following additions.
-