Class InitializersList
- java.lang.Object
-
- org.hibernate.sql.results.internal.InitializersList
-
public final class InitializersList extends Object
Internal helper to keep track of the various Initializer instances being used during RowReader processing: different types of initializers need to be invoked in different orders, so rather than having to identify the order of initializers again during the processing of each row we keep separated lists of initializers defined upfront and then reuse these sets for the scope of the whole resultset's processing.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InitializersList.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description List<Initializer<?>>
asList()
Deprecated.Initializer<?>[]
getInitializers()
Initializer<?>[]
getSortedForResolveInstance()
int
size()
-
-
-
Method Detail
-
getInitializers
public Initializer<?>[] getInitializers()
-
getSortedForResolveInstance
public Initializer<?>[] getSortedForResolveInstance()
-
asList
@Deprecated public List<Initializer<?>> asList()
Deprecated.
-
size
public int size()
-
-