public class Delete extends RowColumns<Delete>
Constructor and Description |
---|
Delete(byte[] row)
Delete whole row.
|
Delete(byte[] row,
byte[]... columns)
Delete a set of columns from a row.
|
Delete(byte[] row,
Collection<byte[]> columns)
Delete a set of columns from a row.
|
Delete(String row)
Delete a whole row.
|
Delete(String row,
Collection<String> columns)
Delete a set of columns from a row.
|
Delete(String row,
String... columns)
Delete a set of columns from a row.
|
public Delete(byte[] row)
row
- Row to delete.public Delete(byte[] row, byte[]... columns)
row
- Row to delete from.columns
- Columns to delete.public Delete(byte[] row, Collection<byte[]> columns)
row
- Row to delete from.columns
- Columns to delete.public Delete(String row)
row
- row to deletepublic Delete(String row, String... columns)
row
- Row to delete from.columns
- Columns to delete.public Delete(String row, Collection<String> columns)
row
- Row to delete from.columns
- Columns to delete.Copyright © 2024 Cask Data, Inc. Licensed under the Apache License, Version 2.0.