public interface ILoaderWithInclude
Modifier and Type | Method and Description |
---|---|
ILoaderWithInclude |
include(java.lang.Class<?> targetClass,
com.mysema.query.types.Expression<?> path)
Includes the specified path.
|
ILoaderWithInclude |
include(com.mysema.query.types.Expression<?> path)
Includes the specified path.
|
ILoaderWithInclude |
include(java.lang.String path)
Includes the specified path.
|
<TResult> TResult[] |
load(java.lang.Class<TResult> clazz,
java.util.Collection<java.lang.String> ids)
Loads the specified ids.
|
<TResult> TResult[] |
load(java.lang.Class<TResult> clazz,
java.lang.Number... ids)
Loads the specified entity with the specified id after applying
conventions on the provided id to get the real document id.
|
<TResult> 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> TResult[] |
load(java.lang.Class<TResult> clazz,
java.lang.String... ids)
Loads the specified ids.
|
<TResult> TResult |
load(java.lang.Class<TResult> clazz,
java.lang.String id)
Loads the specified id.
|
<TResult> TResult[] |
load(java.lang.Class<TResult> clazz,
java.util.UUID... ids)
Loads the specified entity with the specified id after applying
conventions on the provided id to get the real document id.
|
<TResult> 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.
|
ILoaderWithInclude include(java.lang.String path)
path
- ILoaderWithInclude include(com.mysema.query.types.Expression<?> path)
path
- ILoaderWithInclude include(java.lang.Class<?> targetClass, com.mysema.query.types.Expression<?> path)
path
- <TResult> TResult[] load(java.lang.Class<TResult> clazz, java.lang.String... ids)
clazz
- ids
- <TResult> TResult[] load(java.lang.Class<TResult> clazz, java.util.Collection<java.lang.String> ids)
clazz
- ids
- <TResult> TResult load(java.lang.Class<TResult> clazz, java.lang.String id)
clazz
- id
- <TResult> TResult load(java.lang.Class<TResult> clazz, java.lang.Number id)
clazz
- id
- <TResult> TResult load(java.lang.Class<TResult> clazz, java.util.UUID id)
clazz
- id
- <TResult> TResult[] load(java.lang.Class<TResult> clazz, java.util.UUID... ids)
clazz
- ids
- <TResult> TResult[] load(java.lang.Class<TResult> clazz, java.lang.Number... ids)
clazz
- ids
- Copyright © 2014. All Rights Reserved.