Package org.hibernate.metamodel.mapping
Interface ModelPart.JdbcValueBiConsumer<X,Y>
-
- All Known Subinterfaces:
ModelPart.JdbcValueConsumer
- All Known Implementing Classes:
ColumnValueBindingList
- Enclosing interface:
- ModelPart
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ModelPart.JdbcValueBiConsumer<X,Y>
Functional interface for consuming the JDBC values, along with two values of typeX
andY
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
consume(int valueIndex, X x, Y y, Object value, SelectableMapping jdbcValueMapping)
Consume a JDBC-level jdbcValue.
-
-
-
Method Detail
-
consume
void consume(int valueIndex, X x, Y y, Object value, SelectableMapping jdbcValueMapping)
Consume a JDBC-level jdbcValue. The JDBC jdbcMapping descriptor is also passed in
-
-