public interface ILazyLoaderWithInclude
Modifier and Type | Method and Description |
---|---|
ILazyLoaderWithInclude |
include(com.mysema.query.types.Path<?> path)
Includes the specified path
|
ILazyLoaderWithInclude |
include(java.lang.String path)
Includes the specified path.
|
<TResult> Lazy<TResult[]> |
load(java.lang.Class<TResult> clazz,
java.util.Collection<java.lang.String> ids)
Loads the specified ids.
|
<TResult> Lazy<TResult[]> |
load(java.lang.Class<TResult> clazz,
java.lang.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(java.lang.Class<TResult> clazz,
java.lang.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(java.lang.Class<TResult> clazz,
java.lang.String... ids)
Loads the specified ids.
|
<TResult> Lazy<TResult> |
load(java.lang.Class<TResult> clazz,
java.lang.String id)
Loads the specified id.
|
<TResult> Lazy<TResult[]> |
load(java.lang.Class<TResult> clazz,
java.util.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(java.lang.Class<TResult> clazz,
java.util.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(java.lang.String path)
path
- ILazyLoaderWithInclude include(com.mysema.query.types.Path<?> path)
path
- <TResult> Lazy<TResult[]> load(java.lang.Class<TResult> clazz, java.lang.String... ids)
clazz
- ids
- <TResult> Lazy<TResult[]> load(java.lang.Class<TResult> clazz, java.util.Collection<java.lang.String> ids)
ids
- <TResult> Lazy<TResult> load(java.lang.Class<TResult> clazz, java.lang.String id)
clazz
- id
- <TResult> Lazy<TResult> load(java.lang.Class<TResult> clazz, java.lang.Number id)
clazz
- id
- <TResult> Lazy<TResult> load(java.lang.Class<TResult> clazz, java.util.UUID id)
clazz
- id
- <TResult> Lazy<TResult[]> load(java.lang.Class<TResult> clazz, java.lang.Number... ids)
<TResult> Lazy<TResult[]> load(java.lang.Class<TResult> clazz, java.util.UUID... ids)
Copyright © 2014. All Rights Reserved.