Uses of Interface
org.hibernate.sql.results.jdbc.spi.RowProcessingState
-
Packages that use RowProcessingState Package Description org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.sql.results.graph Defines domain result graphs.org.hibernate.sql.results.graph.basic org.hibernate.sql.results.graph.collection org.hibernate.sql.results.graph.embeddable org.hibernate.sql.results.graph.entity org.hibernate.sql.results.graph.tuple org.hibernate.sql.results.jdbc.spi org.hibernate.sql.results.spi -
-
Uses of RowProcessingState in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping with parameters of type RowProcessingState Modifier and Type Method Description default Object[]EntityMappingType. extractConcreteTypeStateValues(Map<AttributeMapping,DomainResultAssembler> assemblerMapping, RowProcessingState rowProcessingState)Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of RowProcessingState in org.hibernate.sql.results.graph
Fields in org.hibernate.sql.results.graph declared as RowProcessingState Modifier and Type Field Description protected RowProcessingStateInitializerData. rowProcessingStateMethods in org.hibernate.sql.results.graph that return RowProcessingState Modifier and Type Method Description RowProcessingStateInitializerData. getRowProcessingState()Methods in org.hibernate.sql.results.graph with parameters of type RowProcessingState Modifier and Type Method Description @Nullable JDomainResultAssembler. assemble(RowProcessingState rowProcessingState)The main "assembly" contract.JUnfetchedBasicPartResultAssembler. assemble(RowProcessingState rowProcessingState)JUnfetchedResultAssembler. assemble(RowProcessingState rowProcessingState)default voidInitializer. endLoading(RowProcessingState rowProcessingState)default voidInitializer. finishUpRow(RowProcessingState rowProcessingState)DataInitializer. getData(RowProcessingState rowProcessingState)The current data of this initializer.default ObjectInitializer. getResolvedInstance(RowProcessingState rowProcessingState)default voidInitializer. initializeInstance(RowProcessingState rowProcessingState)default voidInitializer. initializeInstanceFromParent(Object parentInstance, RowProcessingState rowProcessingState)default voidInitializer. resolveFromPreviousRow(RowProcessingState rowProcessingState)default voidInitializer. resolveInstance(@Nullable Object instance, RowProcessingState rowProcessingState)default voidInitializer. resolveInstance(RowProcessingState rowProcessingState)default voidInitializer. resolveKey(RowProcessingState rowProcessingState)default voidDomainResultAssembler. resolveState(RowProcessingState rowProcessingState)This method is used to resolve the assembler's state, i.e.default voidInitializer. resolveState(RowProcessingState rowProcessingState)voidInitializer. startLoading(RowProcessingState rowProcessingState)Step 0 - Callback for initializers before the first row is read.Constructors in org.hibernate.sql.results.graph with parameters of type RowProcessingState Constructor Description InitializerData(RowProcessingState rowProcessingState) -
Uses of RowProcessingState in org.hibernate.sql.results.graph.basic
Methods in org.hibernate.sql.results.graph.basic with parameters of type RowProcessingState Modifier and Type Method Description JBasicResultAssembler. assemble(RowProcessingState rowProcessingState)ObjectBasicResultAssembler. extractRawValue(RowProcessingState rowProcessingState)Access to the raw value (unconverted, if a converter applied)ObjectCoercingResultAssembler. extractRawValue(RowProcessingState rowProcessingState)Access to the row value, coerced to expected typevoidBasicResultAssembler. resolveState(RowProcessingState rowProcessingState) -
Uses of RowProcessingState in org.hibernate.sql.results.graph.collection
Methods in org.hibernate.sql.results.graph.collection with parameters of type RowProcessingState Modifier and Type Method Description default @Nullable PersistentCollection<?>CollectionInitializer. getCollectionInstance(RowProcessingState rowProcessingState) -
Uses of RowProcessingState in org.hibernate.sql.results.graph.embeddable
Methods in org.hibernate.sql.results.graph.embeddable with parameters of type RowProcessingState Modifier and Type Method Description voidEmbeddableInitializer. resetResolvedEntityRegistrations(RowProcessingState rowProcessingState)Resets the resolved entity registrations by i.e. -
Uses of RowProcessingState in org.hibernate.sql.results.graph.entity
Methods in org.hibernate.sql.results.graph.entity with parameters of type RowProcessingState Modifier and Type Method Description default EntityPersisterEntityInitializer. getConcreteDescriptor(RowProcessingState rowProcessingState)default @Nullable ObjectEntityInitializer. getEntityIdentifier(RowProcessingState rowProcessingState)default ObjectEntityInitializer. getTargetInstance(RowProcessingState rowProcessingState)default voidEntityInitializer. resetResolvedEntityRegistrations(RowProcessingState rowProcessingState)Resets the resolved entity registrations by i.e.default @Nullable EntityKeyEntityInitializer. resolveEntityKeyOnly(RowProcessingState rowProcessingState) -
Uses of RowProcessingState in org.hibernate.sql.results.graph.tuple
Methods in org.hibernate.sql.results.graph.tuple with parameters of type RowProcessingState Modifier and Type Method Description JTupleResultAssembler. assemble(RowProcessingState rowProcessingState)Object[]TupleResultAssembler. extractRawValue(RowProcessingState rowProcessingState)Access to the raw value (unconverted, if a converter applied) -
Uses of RowProcessingState in org.hibernate.sql.results.jdbc.spi
Methods in org.hibernate.sql.results.jdbc.spi that return RowProcessingState Modifier and Type Method Description default RowProcessingStateRowProcessingState. unwrap()If this is a row processing state for aggregate components, this will return the underlying row processing state.Methods in org.hibernate.sql.results.jdbc.spi with parameters of type RowProcessingState Modifier and Type Method Description voidJdbcValues. afterLast(RowProcessingState rowProcessingState)voidJdbcValues. beforeFirst(RowProcessingState rowProcessingState)voidJdbcValues. finishRowProcessing(RowProcessingState rowProcessingState, boolean wasAdded)booleanJdbcValues. first(RowProcessingState rowProcessingState)booleanJdbcValues. isAfterLast(RowProcessingState rowProcessingState)booleanJdbcValues. isBeforeFirst(RowProcessingState rowProcessingState)booleanJdbcValues. isFirst(RowProcessingState rowProcessingState)booleanJdbcValues. isLast(RowProcessingState rowProcessingState)booleanJdbcValues. last(RowProcessingState rowProcessingState)booleanJdbcValues. next(RowProcessingState rowProcessingState)Advances the "cursor position" and returns a boolean indicating whether there is a row available to read viaJdbcValues.getCurrentRowValue(int).booleanJdbcValues. position(int position, RowProcessingState rowProcessingState)Moves the "cursor position" to the specified positionbooleanJdbcValues. previous(RowProcessingState rowProcessingState)Advances the "cursor position" in reverse and returns a boolean indicating whether there is a row available to read viaJdbcValues.getCurrentRowValue(int).booleanJdbcValues. scroll(int numberOfRows, RowProcessingState rowProcessingState)Advances the "cursor position" the indicated number of rows and returns a boolean indicating whether there is a row available to read viaJdbcValues.getCurrentRowValue(int). -
Uses of RowProcessingState in org.hibernate.sql.results.spi
Methods in org.hibernate.sql.results.spi with parameters of type RowProcessingState Modifier and Type Method Description voidRowReader. finishUp(RowProcessingState processingState)Called at the end of processing all rowsRRowReader. readRow(RowProcessingState processingState)The actual coordination of reading a row@Nullable EntityKeyRowReader. resolveSingleResultEntityKey(RowProcessingState rowProcessingState)voidRowReader. startLoading(RowProcessingState processingState)Called before reading the first row.
-