| Package | Description |
|---|---|
| org.springframework.data.r2dbc.core |
Core domain types around DatabaseClient.
|
| org.springframework.data.r2dbc.mapping |
Domain objects for R2DBC.
|
| Modifier and Type | Method and Description |
|---|---|
SettableValue |
ReactiveDataAccessStrategy.NamedParameterProvider.getParameter(int index,
String name)
Returns the
value for a parameter identified either by name or by index. |
| Modifier and Type | Method and Description |
|---|---|
Map<String,SettableValue> |
StatementMapper.InsertSpec.getAssignments() |
| Modifier and Type | Method and Description |
|---|---|
StatementMapper.InsertSpec |
StatementMapper.InsertSpec.withColumn(String column,
SettableValue value)
Associate a column with a
SettableValue and create a new StatementMapper.InsertSpec. |
| Constructor and Description |
|---|
InsertSpec(String table,
Map<String,SettableValue> assignments) |
| Modifier and Type | Method and Description |
|---|---|
static SettableValue |
SettableValue.empty(Class<?> type)
Creates a new empty
SettableValue for type. |
static SettableValue |
SettableValue.from(Object value)
Creates a new
SettableValue from value. |
static SettableValue |
SettableValue.fromOrEmpty(Object value,
Class<?> type)
|
SettableValue |
OutboundRow.get(Object key) |
SettableValue |
OutboundRow.put(String key,
SettableValue value) |
SettableValue |
OutboundRow.remove(Object key) |
| Modifier and Type | Method and Description |
|---|---|
Set<Map.Entry<String,SettableValue>> |
OutboundRow.entrySet() |
Collection<SettableValue> |
OutboundRow.values() |
| Modifier and Type | Method and Description |
|---|---|
OutboundRow |
OutboundRow.append(String key,
SettableValue value)
Put the given key/value pair into this
OutboundRow and return this. |
SettableValue |
OutboundRow.put(String key,
SettableValue value) |
| Modifier and Type | Method and Description |
|---|---|
void |
OutboundRow.forEach(BiConsumer<? super String,? super SettableValue> action) |
void |
OutboundRow.putAll(Map<? extends String,? extends SettableValue> m) |
| Constructor and Description |
|---|
OutboundRow(String key,
SettableValue value)
Create a
OutboundRow instance initialized with the given key/value pair. |
| Constructor and Description |
|---|
OutboundRow(Map<String,SettableValue> map)
Creates a new
OutboundRow from a Map. |
Copyright © 2018–2019 Pivotal Software, Inc.. All rights reserved.