Uses of Interface
com.hazelcast.projection.Projection
Package
Description
Contains Hazelcast map module classes.
Contains classes related to projections.
-
Uses of Projection in com.hazelcast.map
Modifier and TypeMethodDescription<R> Collection<R>
IMap.project
(Projection<? super Map.Entry<K, V>, R> projection) Applies the projection logic on all map entries and returns the result<R> Collection<R>
Applies the projection logic on map entries filtered with the Predicated and returns the result -
Uses of Projection in com.hazelcast.projection
Modifier and TypeMethodDescriptionstatic <T> Projection<T,
T> Projections.identity()
Returns a projection that does no transformation.static <I> Projection<I,
Object[]> Projections.multiAttribute
(String... attributePaths) Returns a projection that extracts the value of the givenattributePaths
.static <I,
O> Projection<I, O> Projections.singleAttribute
(String attributePath) Returns a projection that extracts the value of the givenattributePath
.