Uses of Interface
org.eclipse.collections.api.block.procedure.Procedure
-
Packages that use Procedure Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.collection org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap This package contains interfaces forMultimap.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API. -
-
Uses of Procedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Procedure Modifier and Type Method Description voidRichIterable. each(Procedure<? super T> procedure)The procedure is executed for each element in the iterable.voidInternalIterable. forEach(Procedure<? super T> procedure)The procedure is executed for each element in the iterable.voidParallelIterable. forEach(Procedure<? super T> procedure)default voidRichIterable. forEach(Procedure<? super T> procedure)LazyIterable<T>LazyIterable. tap(Procedure<? super T> procedure)Creates a deferred tap iterable.RichIterable<T>RichIterable. tap(Procedure<? super T> procedure)Executes the Procedure for each element in the iterable and returnsthis. -
Uses of Procedure in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type Procedure Modifier and Type Method Description Bag<T>Bag. tap(Procedure<? super T> procedure)ImmutableBag<T>ImmutableBag. tap(Procedure<? super T> procedure)ImmutableBagIterable<T>ImmutableBagIterable. tap(Procedure<? super T> procedure)default MultiReaderBag<T>MultiReaderBag. tap(Procedure<? super T> procedure)MutableBag<T>MutableBag. tap(Procedure<? super T> procedure)MutableBagIterable<T>MutableBagIterable. tap(Procedure<? super T> procedure)UnsortedBag<T>UnsortedBag. tap(Procedure<? super T> procedure)voidMultiReaderBag. withReadLockAndDelegate(Procedure<? super MutableBag<T>> procedure)voidMultiReaderBag. withWriteLockAndDelegate(Procedure<? super MutableBag<T>> procedure) -
Uses of Procedure in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type Procedure Modifier and Type Method Description ImmutableSortedBag<T>ImmutableSortedBag. tap(Procedure<? super T> procedure)MutableSortedBag<T>MutableSortedBag. tap(Procedure<? super T> procedure)SortedBag<T>SortedBag. tap(Procedure<? super T> procedure) -
Uses of Procedure in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Procedure Modifier and Type Method Description BiMap<K,V>BiMap. tap(Procedure<? super V> procedure)ImmutableBiMap<K,V>ImmutableBiMap. tap(Procedure<? super V> procedure)MutableBiMap<K,V>MutableBiMap. tap(Procedure<? super V> procedure) -
Uses of Procedure in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Procedure Modifier and Type Method Description FixedSizeCollection<T>FixedSizeCollection. tap(Procedure<? super T> procedure)ImmutableCollection<T>ImmutableCollection. tap(Procedure<? super T> procedure)MutableCollection<T>MutableCollection. tap(Procedure<? super T> procedure) -
Uses of Procedure in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type Procedure Modifier and Type Method Description FixedSizeList<T>FixedSizeList. tap(Procedure<? super T> procedure)ImmutableList<T>ImmutableList. tap(Procedure<? super T> procedure)ListIterable<T>ListIterable. tap(Procedure<? super T> procedure)default MultiReaderList<T>MultiReaderList. tap(Procedure<? super T> procedure)default MutableList<T>MutableList. tap(Procedure<? super T> procedure)voidMultiReaderList. withReadLockAndDelegate(Procedure<? super MutableList<T>> procedure)voidMultiReaderList. withWriteLockAndDelegate(Procedure<? super MutableList<T>> procedure) -
Uses of Procedure in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Procedure Modifier and Type Method Description voidMapIterable. forEachKey(Procedure<? super K> procedure)Calls theprocedurewith each key of the map.voidMapIterable. forEachValue(Procedure<? super V> procedure)Calls the procedure with each value of the map.ConcurrentMutableMap<K,V>ConcurrentMutableMap. tap(Procedure<? super V> procedure)FixedSizeMap<K,V>FixedSizeMap. tap(Procedure<? super V> procedure)ImmutableMap<K,V>ImmutableMap. tap(Procedure<? super V> procedure)ImmutableMapIterable<K,V>ImmutableMapIterable. tap(Procedure<? super V> procedure)ImmutableOrderedMap<K,V>ImmutableOrderedMap. tap(Procedure<? super V> procedure)MapIterable<K,V>MapIterable. tap(Procedure<? super V> procedure)Executes the Procedure for each value of the map and returnsthis.MutableMap<K,V>MutableMap. tap(Procedure<? super V> procedure)MutableMapIterable<K,V>MutableMapIterable. tap(Procedure<? super V> procedure)MutableOrderedMap<K,V>MutableOrderedMap. tap(Procedure<? super V> procedure)OrderedMap<K,V>OrderedMap. tap(Procedure<? super V> procedure)UnsortedMapIterable<K,V>UnsortedMapIterable. tap(Procedure<? super V> procedure) -
Uses of Procedure in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type Procedure Modifier and Type Method Description voidObjectBooleanMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectByteMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectCharMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectDoubleMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectFloatMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectIntMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectLongMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidObjectShortMap. forEachKey(Procedure<? super K> procedure)Iterates through each key in the map, invoking the procedure for each.voidPrimitiveObjectMap. forEachValue(Procedure<? super V> procedure)ByteObjectMap<V>ByteObjectMap. tap(Procedure<? super V> procedure)CharObjectMap<V>CharObjectMap. tap(Procedure<? super V> procedure)DoubleObjectMap<V>DoubleObjectMap. tap(Procedure<? super V> procedure)FloatObjectMap<V>FloatObjectMap. tap(Procedure<? super V> procedure)ImmutableByteObjectMap<V>ImmutableByteObjectMap. tap(Procedure<? super V> procedure)ImmutableCharObjectMap<V>ImmutableCharObjectMap. tap(Procedure<? super V> procedure)ImmutableDoubleObjectMap<V>ImmutableDoubleObjectMap. tap(Procedure<? super V> procedure)ImmutableFloatObjectMap<V>ImmutableFloatObjectMap. tap(Procedure<? super V> procedure)ImmutableIntObjectMap<V>ImmutableIntObjectMap. tap(Procedure<? super V> procedure)ImmutableLongObjectMap<V>ImmutableLongObjectMap. tap(Procedure<? super V> procedure)ImmutableShortObjectMap<V>ImmutableShortObjectMap. tap(Procedure<? super V> procedure)IntObjectMap<V>IntObjectMap. tap(Procedure<? super V> procedure)LongObjectMap<V>LongObjectMap. tap(Procedure<? super V> procedure)MutableByteObjectMap<V>MutableByteObjectMap. tap(Procedure<? super V> procedure)MutableCharObjectMap<V>MutableCharObjectMap. tap(Procedure<? super V> procedure)MutableDoubleObjectMap<V>MutableDoubleObjectMap. tap(Procedure<? super V> procedure)MutableFloatObjectMap<V>MutableFloatObjectMap. tap(Procedure<? super V> procedure)MutableIntObjectMap<V>MutableIntObjectMap. tap(Procedure<? super V> procedure)MutableLongObjectMap<V>MutableLongObjectMap. tap(Procedure<? super V> procedure)MutableShortObjectMap<V>MutableShortObjectMap. tap(Procedure<? super V> procedure)ShortObjectMap<V>ShortObjectMap. tap(Procedure<? super V> procedure) -
Uses of Procedure in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type Procedure Modifier and Type Method Description ImmutableSortedMap<K,V>ImmutableSortedMap. tap(Procedure<? super V> procedure)MutableSortedMap<K,V>MutableSortedMap. tap(Procedure<? super V> procedure)SortedMapIterable<K,V>SortedMapIterable. tap(Procedure<? super V> procedure) -
Uses of Procedure in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap with parameters of type Procedure Modifier and Type Method Description voidMultimap. forEachKey(Procedure<? super K> procedure)Calls theprocedurewith each key.voidMultimap. forEachValue(Procedure<? super V> procedure)Calls the procedure with each value. -
Uses of Procedure in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type Procedure Modifier and Type Method Description voidOrderedIterable. forEach(int startIndex, int endIndex, Procedure<? super T> procedure)Iterates over the section of the iterable covered by the specified inclusive indexes.default voidReversibleIterable. reverseForEach(Procedure<? super T> procedure)Evaluates the procedure for each element of the list iterating in reverse order.OrderedIterable<T>OrderedIterable. tap(Procedure<? super T> procedure)ReversibleIterable<T>ReversibleIterable. tap(Procedure<? super T> procedure)SortedIterable<T>SortedIterable. tap(Procedure<? super T> procedure) -
Uses of Procedure in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type Procedure Modifier and Type Method Description FixedSizeSet<T>FixedSizeSet. tap(Procedure<? super T> procedure)ImmutableSet<T>ImmutableSet. tap(Procedure<? super T> procedure)ImmutableSetIterable<T>ImmutableSetIterable. tap(Procedure<? super T> procedure)default MultiReaderSet<T>MultiReaderSet. tap(Procedure<? super T> procedure)MutableSet<T>MutableSet. tap(Procedure<? super T> procedure)MutableSetIterable<T>MutableSetIterable. tap(Procedure<? super T> procedure)SetIterable<T>SetIterable. tap(Procedure<? super T> procedure)UnsortedSetIterable<T>UnsortedSetIterable. tap(Procedure<? super T> procedure)voidMultiReaderSet. withReadLockAndDelegate(Procedure<? super MutableSet<T>> procedure)voidMultiReaderSet. withWriteLockAndDelegate(Procedure<? super MutableSet<T>> procedure) -
Uses of Procedure in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type Procedure Modifier and Type Method Description ImmutableSortedSet<T>ImmutableSortedSet. tap(Procedure<? super T> procedure)MutableSortedSet<T>MutableSortedSet. tap(Procedure<? super T> procedure)SortedSetIterable<T>SortedSetIterable. tap(Procedure<? super T> procedure) -
Uses of Procedure in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type Procedure Modifier and Type Method Description ImmutableStack<T>ImmutableStack. tap(Procedure<? super T> procedure)MutableStack<T>MutableStack. tap(Procedure<? super T> procedure)StackIterable<T>StackIterable. tap(Procedure<? super T> procedure)
-