Package org.hibernate.loader.ast.spi
Interface MultiIdEntityLoader<T>
-
- All Superinterfaces:
EntityLoader,EntityMultiLoader<T>,Loader,MultiKeyLoader
- All Known Implementing Classes:
AbstractMultiIdEntityLoader,MultiIdEntityLoaderArrayParam,MultiIdEntityLoaderStandard
public interface MultiIdEntityLoader<T> extends EntityMultiLoader<T>
Loader subtype for loading multiple entities by multiple identifier values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K> List<T>load(K[] ids, MultiIdLoadOptions options, EventSource session)Load multiple entities by id.-
Methods inherited from interface org.hibernate.loader.ast.spi.EntityLoader
getLoadable
-
-
-
-
Method Detail
-
load
<K> List<T> load(K[] ids, MultiIdLoadOptions options, EventSource session)
Load multiple entities by id. The exact result depends on the passed options.
-
-