public interface ILazyLoaderWithInclude
Modifier and Type | Method and Description |
---|---|
ILazyLoaderWithInclude |
include(com.mysema.query.types.Path<?> path)
Begin a load while including the specified path
|
ILazyLoaderWithInclude |
include(String path)
Begin a load while including the specified path
|
<TResult> Lazy<TResult[]> |
load(Class<TResult> clazz,
Collection<String> ids)
Loads the specified entities with the specified ids.
|
<TResult> Lazy<TResult[]> |
load(Class<TResult> clazz,
Number... ids)
Loads the specified entities with the specified id after applying
conventions on the provided id to get the real document id.
|
<TResult> Lazy<TResult> |
load(Class<TResult> clazz,
Number id)
Loads the specified entity with the specified id after applying
conventions on the provided id to get the real document id.
|
<TResult> Lazy<TResult[]> |
load(Class<TResult> clazz,
String... ids)
Loads the specified entities with the specified ids.
|
<TResult> Lazy<TResult> |
load(Class<TResult> clazz,
String id)
Loads the specified entity with the specified id.
|
<TResult> Lazy<TResult[]> |
load(Class<TResult> clazz,
UUID... ids)
Loads the specified entities with the specified id after applying
conventions on the provided id to get the real document id.
|
<TResult> Lazy<TResult> |
load(Class<TResult> clazz,
UUID id)
Loads the specified entity with the specified id after applying
conventions on the provided id to get the real document id.
|
ILazyLoaderWithInclude include(String path)
path
- Path in documents in which server should look for a 'referenced' documents.ILazyLoaderWithInclude include(com.mysema.query.types.Path<?> path)
path
- Path in documents in which server should look for a 'referenced' documents.<TResult> Lazy<TResult[]> load(Class<TResult> clazz, String... ids)
clazz
- ids
- Enumerable of Ids that should be loaded<TResult> Lazy<TResult[]> load(Class<TResult> clazz, Collection<String> ids)
ids
- Collection of Ids that should be loaded<TResult> Lazy<TResult> load(Class<TResult> clazz, String id)
clazz
- id
- Identifier of a entity that will be loaded.<TResult> Lazy<TResult> load(Class<TResult> clazz, Number id)
clazz
- id
- <TResult> Lazy<TResult> load(Class<TResult> clazz, UUID id)
clazz
- id
- <TResult> Lazy<TResult[]> load(Class<TResult> clazz, Number... ids)
<TResult> Lazy<TResult[]> load(Class<TResult> clazz, UUID... ids)
Copyright © 2016. All Rights Reserved.