Class MutableBindings
java.lang.Object
org.springframework.data.r2dbc.dialect.Bindings
org.springframework.data.r2dbc.dialect.MutableBindings
- All Implemented Interfaces:
Iterable<Bindings.Binding>
,Supplier<Stream<Bindings.Binding>>
,Streamable<Bindings.Binding>
Deprecated.
- Author:
- Mark Paluch
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.data.r2dbc.dialect.Bindings
Bindings.Binding, Bindings.NullBinding, Bindings.ValueBinding
-
Constructor Summary
ConstructorsConstructorDescriptionMutableBindings
(BindMarkers markers) Deprecated.Create newMutableBindings
. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Bind a value and return the relatedBindMarker
.bind
(BindMarker marker, Object value) Deprecated.Bind a value toBindMarker
.Deprecated.Bind aNULL
value and return the relatedBindMarker
.bindNull
(BindMarker marker, Class<?> valueType) Deprecated.Bind aNULL
value toBindMarker
.Deprecated.Obtain the nextBindMarker
.nextMarker
(String hint) Deprecated.Obtain the nextBindMarker
with a namehint
.Methods inherited from class org.springframework.data.r2dbc.dialect.Bindings
and, apply, empty, forEach, getBindings, iterator, merge, spliterator
-
Constructor Details
-
MutableBindings
Deprecated.Create newMutableBindings
.- Parameters:
markers
- must not be null.
-
-
Method Details
-
nextMarker
Deprecated.Obtain the nextBindMarker
. IncrementsBindMarkers
state.- Returns:
- the next
BindMarker
.
-
nextMarker
Deprecated.- Parameters:
hint
- name hint.- Returns:
- the next
BindMarker
.
-
bind
Deprecated.Bind a value toBindMarker
.- Parameters:
marker
- must not be null.value
- must not be null.- Returns:
this
MutableBindings
.
-
bind
Deprecated.Bind a value and return the relatedBindMarker
. IncrementsBindMarkers
state.- Parameters:
value
- must not be null.- Returns:
this
MutableBindings
.
-
bindNull
Deprecated.Bind aNULL
value toBindMarker
.- Parameters:
marker
- must not be null.valueType
- must not be null.- Returns:
this
MutableBindings
.
-
bindNull
Deprecated.- Parameters:
valueType
- must not be null.- Returns:
this
MutableBindings
.
-
MutableBindings
instead.