Uses of Interface
org.eclipse.collections.api.block.function.primitive.LongToObjectFunction
Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
org.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.ordered.primitive | |
org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.list.primitive |
This package contains implementations of the primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
-
Uses of LongToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
LazyLongIterable. collect(LongToObjectFunction<? extends V> function)
<V> RichIterable<V>
LongIterable. collect(LongToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default <V, R extends Collection<V>>
RLongIterable. collect(LongToObjectFunction<? extends V> function, R target)
Same asLongIterable.collect(LongToObjectFunction)
, only the results are added to the target Collection.<V> LazyIterable<V>
LazyLongIterable. flatCollect(LongToObjectFunction<? extends Iterable<V>> function)
default <V, R extends Collection<V>>
RLongIterable. flatCollect(LongToObjectFunction<? extends Iterable<V>> function, R target)
flatCollect
is a special case ofLongIterable.collect(LongToObjectFunction)
. -
Uses of LongToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableLongBag. collect(LongToObjectFunction<? extends V> function)
<V> Bag<V>
LongBag. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableLongBag. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableLongCollection. collect(LongToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableLongCollection. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableLongList. collect(LongToObjectFunction<? extends V> function)
<V> ListIterable<V>
LongList. collect(LongToObjectFunction<? extends V> function)
<V> MutableList<V>
MutableLongList. collect(LongToObjectFunction<? extends V> function)
default <T> MutableLongList
MutableLongList. sortThisBy(LongToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableLongList
MutableLongList. sortThisBy(LongToObjectFunction<T> function, Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
. -
Uses of LongToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectLongMap. collect(LongToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortLongMap. collect(LongToObjectFunction<? extends V> function)
<V> Bag<V>
LongValuesMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableLongValuesMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableObjectLongMap. collect(LongToObjectFunction<? extends V> function)
V
MutableLongObjectMap. getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function)
Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of LongToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>
OrderedLongIterable. collect(LongToObjectFunction<? extends V> function)
<V> ReversibleIterable<V>
ReversibleLongIterable. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableLongSet. collect(LongToObjectFunction<? extends V> function)
<V> SetIterable<V>
LongSet. collect(LongToObjectFunction<? extends V> function)
<V> MutableSet<V>
MutableLongSet. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableLongStack. collect(LongToObjectFunction<? extends V> function)
<V> StackIterable<V>
LongStack. collect(LongToObjectFunction<? extends V> function)
<V> MutableStack<V>
MutableLongStack. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
LongHashBag. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongBag. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongBag. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement LongToObjectFunction Modifier and Type Class Description class
LongCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description LongCaseFunction<V>
LongCaseFunction. addCase(LongPredicate predicate, LongToObjectFunction<? extends V> function)
LongCaseFunction<V>
LongCaseFunction. setDefault(LongToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type LongToObjectFunction Constructor Description LongCaseFunction(LongToObjectFunction<? extends V> newDefaultFunction)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedLongCollection. collect(LongToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableLongCollection. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyLongIterable. collect(LongToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyLongIterable. flatCollect(LongToObjectFunction<? extends Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type LongToObjectFunction Constructor Description CollectLongToObjectIterable(LongIterable iterable, LongToObjectFunction<? extends V> function)
FlatCollectLongToObjectIterable(LongIterable iterable, LongToObjectFunction<? extends Iterable<V>> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableList<V>
LongArrayList. collect(LongToObjectFunction<? extends V> function)
<V, R extends Collection<V>>
RLongArrayList. collect(LongToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedLongList. collect(LongToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableLongList. collect(LongToObjectFunction<? extends V> function)
<T> MutableLongList
SynchronizedLongList. sortThisBy(LongToObjectFunction<T> function)
<T> MutableLongList
SynchronizedLongList. sortThisBy(LongToObjectFunction<T> function, Comparator<? super T> comparator)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
LongInterval. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableLongKeySet. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableLongValuesMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectLongHashMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectLongHashMapWithHashingStrategy. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongLongMap. collect(LongToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectLongMap. collect(LongToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntLongMap. collect(LongToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongLongMap. collect(LongToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectLongMap. collect(LongToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortLongMap. collect(LongToObjectFunction<? extends V> function)
V
LongObjectHashMap. getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function)
V
SynchronizedLongObjectMap. getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function)
V
UnmodifiableLongObjectMap. getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedLongIterable. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
LongHashSet. collect(LongToObjectFunction<? extends V> function)
<V, R extends Collection<V>>
RLongHashSet. collect(LongToObjectFunction<? extends V> function, R target)
<V> MutableSet<V>
SynchronizedLongSet. collect(LongToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableLongSet. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
LongArrayStack. collect(LongToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedLongStack. collect(LongToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableLongStack. collect(LongToObjectFunction<? extends V> function)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description static <V, R extends Collection<V>>
RLongIterableIterate. collect(LongIterable iterable, LongToObjectFunction<? extends V> function, R targetCollection)
static <V, R extends Collection<V>>
RLongIteratorIterate. collect(LongIterator iterator, LongToObjectFunction<? extends V> function, R targetCollection)
-
Uses of LongToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type LongToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyLongIterate. collect(LongIterable iterable, LongToObjectFunction<? extends V> function)
Creates a deferred transforming long iterable for the specified long iterable.static <V> LazyIterable<V>
LazyLongIterate. collectIf(LongIterable iterable, LongPredicate predicate, LongToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming long iterable for the specified long iterable.static <V> LazyIterable<V>
LazyLongIterate. flatCollect(LongIterable iterable, LongToObjectFunction<? extends Iterable<V>> function)
Creates a deferred transforming and flattening long iterable for the specified long iterable.