public static class Delete.Selection extends Delete.Builder
columnNames| Constructor and Description |
|---|
Delete.Selection() |
| Modifier and Type | Method and Description |
|---|---|
Delete.Builder |
all()
Deletes all columns (i.e.
|
Delete.Selection |
column(String name)
Deletes the provided column.
|
Delete.Selection |
listElt(String columnName,
int idx)
Deletes the provided list element.
|
Delete.Selection |
mapElt(String columnName,
Object key)
Deletes a map element given a key.
|
from, from, frompublic Delete.Builder all()
IllegalStateException - if some columns had already been selected for this builder.public Delete.Selection column(String name)
name - the column name to select for deletion.public Delete.Selection listElt(String columnName, int idx)
columnName - the name of the list column.idx - the index of the element to delete.public Delete.Selection mapElt(String columnName, Object key)
columnName - the name of the map column.key - the key for the element to delete.Copyright © 2014. All Rights Reserved.