Package com.evolveum.midpoint.util
Interface Foreachable<T>
- All Known Subinterfaces:
ContainerDelta<V>
,DeltaSetTriple<T>
,ItemDelta<V,
,D> ItemDeltaDelegator<V,
,D> PrismValueDeltaSetTriple<V>
,ProcessedObject.ProcessedObjectItemDelta<V,
,D> PropertyDelta<T>
,ReferenceDelta
- All Known Implementing Classes:
AbstractDelegatedPrismValueDeltaSetTriple
,DeltaTriple
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
- Author:
- semancik
-
Method Summary
-
Method Details
-
foreach
Will call processor for every element in the instance. This is NOT recursive. E.g. in case of collection of collections the processor will NOT be called for elements of the inner collections. If you need recursion please have a look at Visitor.
-