<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionFrom1AsStep.as(Function<V1,V> transformer) |
Defines the result of the composite projection
as the result of applying the given function to the single inner projection defined so far.
|
<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionFrom2AsStep.as(BiFunction<V1,V2,V> transformer) |
Defines the result of the composite projection
as the result of applying the given function to the two inner projections defined so far.
|
<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionFrom3AsStep.as(TriFunction<V1,V2,V3,V> transformer) |
Defines the result of the composite projection
as the result of applying the given function to the three inner projections defined so far.
|
<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionInnerStep.as(Class<V> objectClass) |
Defines the result of the composite projection
as the result of applying the given function to the single inner projection defined so far.
|
CompositeProjectionValueStep<?,Object[]> |
CompositeProjectionFromAsStep.asArray() |
Defines the result of the composite projection
as an object array that will contain the results of inner projections defined so far, in order.
|
<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionFromAsStep.asArray(Function<? super Object[],? extends V> transformer) |
Defines the result of the composite projection
as the result of applying the given function to an object array containing
the results of inner projections defined so far, in order.
|
CompositeProjectionValueStep<?,List<?>> |
CompositeProjectionFromAsStep.asList() |
Defines the result of the composite projection
as a List that will contain the results of inner projections defined so far, in order.
|
<V> CompositeProjectionValueStep<?,V> |
CompositeProjectionFromAsStep.asList(Function<? super List<?>,? extends V> transformer) |
Defines the result of the composite projection
as the result of applying the given function to a List containing
the results of inner projections defined so far, in order.
|
default CompositeProjectionValueStep<?,List<?>> |
SearchProjectionFactory.composite(ProjectionFinalStep<?>... dslFinalSteps) |
Create a projection that will compose a List based on the given almost-built projections.
|
CompositeProjectionValueStep<?,List<?>> |
SearchProjectionFactory.composite(SearchProjection<?>... projections) |
Create a projection that will compose a List based on the given projections.
|