Uses of Interface
org.eclipse.collections.api.block.function.primitive.FloatToObjectFunction
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.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 FloatToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
FloatIterable. collect(FloatToObjectFunction<? 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>>
RFloatIterable. collect(FloatToObjectFunction<? extends V> function, R target)
Same asFloatIterable.collect(FloatToObjectFunction)
, only the results are added to the target Collection.<V> LazyIterable<V>
LazyFloatIterable. collect(FloatToObjectFunction<? extends V> function)
default <V, R extends Collection<V>>
RFloatIterable. flatCollect(FloatToObjectFunction<? extends Iterable<V>> function, R target)
flatCollect
is a special case ofFloatIterable.collect(FloatToObjectFunction)
.<V> LazyIterable<V>
LazyFloatIterable. flatCollect(FloatToObjectFunction<? extends Iterable<V>> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> Bag<V>
FloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableFloatBag. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ListIterable<V>
FloatList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatList. collect(FloatToObjectFunction<? extends V> function)
<V> MutableList<V>
MutableFloatList. collect(FloatToObjectFunction<? extends V> function)
default <T> MutableFloatList
MutableFloatList. sortThisBy(FloatToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableFloatList
MutableFloatList. sortThisBy(FloatToObjectFunction<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 FloatToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> Bag<V>
FloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableFloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableObjectFloatMap. collect(FloatToObjectFunction<? extends V> function)
V
MutableFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? 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 FloatToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>
OrderedFloatIterable. collect(FloatToObjectFunction<? extends V> function)
<V> ReversibleIterable<V>
ReversibleFloatIterable. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> SetIterable<V>
FloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableSet<V>
MutableFloatSet. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> StackIterable<V>
FloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableFloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
MutableFloatStack. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
FloatHashBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatBag. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement FloatToObjectFunction Modifier and Type Class Description class
FloatCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description FloatCaseFunction<V>
FloatCaseFunction. addCase(FloatPredicate predicate, FloatToObjectFunction<? extends V> function)
FloatCaseFunction<V>
FloatCaseFunction. setDefault(FloatToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type FloatToObjectFunction Constructor Description FloatCaseFunction(FloatToObjectFunction<? extends V> newDefaultFunction)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedFloatCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyFloatIterable. collect(FloatToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyFloatIterable. flatCollect(FloatToObjectFunction<? extends Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatToObjectFunction Constructor Description CollectFloatToObjectIterable(FloatIterable iterable, FloatToObjectFunction<? extends V> function)
FlatCollectFloatToObjectIterable(FloatIterable iterable, FloatToObjectFunction<? extends Iterable<V>> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableList<V>
FloatArrayList. collect(FloatToObjectFunction<? extends V> function)
<V, R extends Collection<V>>
RFloatArrayList. collect(FloatToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedFloatList. collect(FloatToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableFloatList. collect(FloatToObjectFunction<? extends V> function)
<T> MutableFloatList
SynchronizedFloatList. sortThisBy(FloatToObjectFunction<T> function)
<T> MutableFloatList
SynchronizedFloatList. sortThisBy(FloatToObjectFunction<T> function, Comparator<? super T> comparator)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableFloatKeySet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableFloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMapWithHashingStrategy. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectFloatMap. collect(FloatToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectFloatMap. collect(FloatToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
V
FloatObjectHashMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
V
SynchronizedFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
V
UnmodifiableFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedFloatIterable. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
FloatHashSet. collect(FloatToObjectFunction<? extends V> function)
<V, R extends Collection<V>>
RFloatHashSet. collect(FloatToObjectFunction<? extends V> function, R target)
<V> MutableSet<V>
SynchronizedFloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableFloatSet. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
FloatArrayStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedFloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableFloatStack. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description static <V, R extends Collection<V>>
RFloatIterableIterate. collect(FloatIterable iterable, FloatToObjectFunction<? extends V> function, R targetCollection)
static <V, R extends Collection<V>>
RFloatIteratorIterate. collect(FloatIterator iterator, FloatToObjectFunction<? extends V> function, R targetCollection)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyFloatIterate. collect(FloatIterable iterable, FloatToObjectFunction<? extends V> function)
Creates a deferred transforming float iterable for the specified float iterable.static <V> LazyIterable<V>
LazyFloatIterate. collectIf(FloatIterable iterable, FloatPredicate predicate, FloatToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming float iterable for the specified float iterable.static <V> LazyIterable<V>
LazyFloatIterate. flatCollect(FloatIterable iterable, FloatToObjectFunction<? extends Iterable<V>> function)
Creates a deferred transforming and flattening float iterable for the specified float iterable.