SELF
- the generic type of this query itself (this) for fluent API calls.public interface FeatureValues<SELF extends FeatureValues<SELF>> extends StatementFeature
StatementFeature
for a Statement
allowing a
VALUES clause
. For each invocation of value(pI, vI)
a value binding is added so in the end the resulting SQL fragment will be:
(p1, p2, ..., pN) VALUES (v1, v2, ..., vN)
Modifier and Type | Method and Description |
---|---|
<V> SELF |
value(PropertyPath<V> path,
V value)
Adds a value binding setting the given
PropertyPath to the given value . |
<V> SELF value(PropertyPath<V> path, V value)
PropertyPath
to the given value
.V
- the generic type of the value
.path
- the PropertyPath
for the value to assign that will be added to the bracket before the
keyword.value
- the literal value to assign that will be added to the bracket after the keyword.Copyright © 2001–2016 mmm-Team. All rights reserved.