C - the context typepublic final class UpdateValues<C> extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
UpdateValues.Builder<C>
Builder class.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
get(Column<T,C> column)
Gets the value associated with the column.
|
Set<Column<?,C>> |
getColumns() |
static <C,T> UpdateValues.Builder<C> |
with(Column<T,C> column,
T value)
Creates a new builder with the given column and its value as first entry.
|
public Set<Column<?,C>> getColumns()
public <T> T get(Column<T,C> column)
T - the value typecolumn - the column to retrievepublic static <C,T> UpdateValues.Builder<C> with(Column<T,C> column, T value)
C - the column's context typeT - the column's typecolumn - the column to save a value forvalue - the value to saveCopyright © 2017–2024. All rights reserved.