- managedBlock(ForkJoinPool.ManagedBlocker) - Static method in class java8.util.concurrent.ForkJoinPool
-
Blocks in accord with the given blocker.
- map(Function<? super T, ? extends U>) - Method in class java8.util.Optional
-
If a value is present, apply the provided mapping function to it,
and if the result is non-null, return an Optional
describing the
result.
- map(DoubleUnaryOperator) - Method in interface java8.util.stream.DoubleStream
-
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
- map(IntUnaryOperator) - Method in interface java8.util.stream.IntStream
-
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
- map(LongUnaryOperator) - Method in interface java8.util.stream.LongStream
-
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
- map(Function<? super T, ? extends R>) - Method in interface java8.util.stream.Stream
-
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
- mapping(Function<? super T, ? extends U>, Collector<? super U, A, R>) - Static method in class java8.util.stream.Collectors
-
Adapts a Collector
accepting elements of type U
to one
accepting elements of type T
by applying a mapping function to
each input element before accumulation.
- Maps - Class in java8.util
-
A place for static default implementations of the new Java 8
default interface methods and static interface methods in the
Map
and ConcurrentMap
interfaces.
- mapToDouble(IntToDoubleFunction) - Method in interface java8.util.stream.IntStream
-
Returns a DoubleStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToDouble(LongToDoubleFunction) - Method in interface java8.util.stream.LongStream
-
Returns a DoubleStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToDouble(ToDoubleFunction<? super T>) - Method in interface java8.util.stream.Stream
-
Returns a DoubleStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToInt(DoubleToIntFunction) - Method in interface java8.util.stream.DoubleStream
-
Returns an IntStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToInt(LongToIntFunction) - Method in interface java8.util.stream.LongStream
-
Returns an IntStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToInt(ToIntFunction<? super T>) - Method in interface java8.util.stream.Stream
-
Returns an IntStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToLong(DoubleToLongFunction) - Method in interface java8.util.stream.DoubleStream
-
Returns a LongStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToLong(IntToLongFunction) - Method in interface java8.util.stream.IntStream
-
Returns a LongStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToLong(ToLongFunction<? super T>) - Method in interface java8.util.stream.Stream
-
Returns a LongStream
consisting of the results of applying the
given function to the elements of this stream.
- mapToObj(DoubleFunction<? extends U>) - Method in interface java8.util.stream.DoubleStream
-
Returns an object-valued Stream
consisting of the results of
applying the given function to the elements of this stream.
- mapToObj(IntFunction<? extends U>) - Method in interface java8.util.stream.IntStream
-
Returns an object-valued Stream
consisting of the results of
applying the given function to the elements of this stream.
- mapToObj(LongFunction<? extends U>) - Method in interface java8.util.stream.LongStream
-
Returns an object-valued Stream
consisting of the results of
applying the given function to the elements of this stream.
- max(double, double) - Static method in class java8.lang.Doubles
-
Returns the greater of two double
values
as if by calling Math.max
.
- max(int, int) - Static method in class java8.lang.Integers
-
Returns the greater of two int
values
as if by calling Math.max
.
- max(long, long) - Static method in class java8.lang.Longs
-
Returns the greater of two long
values
as if by calling Math.max
.
- max() - Method in interface java8.util.stream.DoubleStream
-
Returns an OptionalDouble
describing the maximum element of this
stream, or an empty OptionalDouble if this stream is empty.
- max() - Method in interface java8.util.stream.IntStream
-
Returns an OptionalInt
describing the maximum element of this
stream, or an empty optional if this stream is empty.
- max() - Method in interface java8.util.stream.LongStream
-
Returns an OptionalLong
describing the maximum element of this
stream, or an empty optional if this stream is empty.
- max(Comparator<? super T>) - Method in interface java8.util.stream.Stream
-
Returns the maximum element of this stream according to the provided
Comparator
.
- maxBy(Comparator<? super T>) - Static method in class java8.util.function.BinaryOperators
-
Returns a
BinaryOperator
which returns the greater of two elements
according to the specified
Comparator
.
- maxBy(Comparator<? super T>) - Static method in class java8.util.stream.Collectors
-
Returns a Collector
that produces the maximal element according
to a given Comparator
, described as an Optional<T>
.
- merge(Map<K, V>, K, V, BiFunction<? super V, ? super V, ? extends V>) - Static method in class java8.util.Maps
-
If the specified key is not already associated with a value or is
associated with null, associates it with the given non-null value.
- merge(StringJoiner) - Method in class java8.util.StringJoiner
-
Adds the contents of the given StringJoiner
without prefix and
suffix as the next element if it is non-empty.
- mergeConcurrent(ConcurrentMap<K, V>, K, V, BiFunction<? super V, ? super V, ? extends V>) - Static method in class java8.util.Maps
-
If the specified key is not already associated with a value or is
associated with null, associates it with the given non-null value.
- min(double, double) - Static method in class java8.lang.Doubles
-
Returns the smaller of two double
values
as if by calling Math.min
.
- min(int, int) - Static method in class java8.lang.Integers
-
Returns the smaller of two int
values
as if by calling Math.min
.
- min(long, long) - Static method in class java8.lang.Longs
-
Returns the smaller of two long
values
as if by calling Math.min
.
- min() - Method in interface java8.util.stream.DoubleStream
-
Returns an OptionalDouble
describing the minimum element of this
stream, or an empty OptionalDouble if this stream is empty.
- min() - Method in interface java8.util.stream.IntStream
-
Returns an OptionalInt
describing the minimum element of this
stream, or an empty optional if this stream is empty.
- min() - Method in interface java8.util.stream.LongStream
-
Returns an OptionalLong
describing the minimum element of this
stream, or an empty optional if this stream is empty.
- min(Comparator<? super T>) - Method in interface java8.util.stream.Stream
-
Returns the minimum element of this stream according to the provided
Comparator
.
- minBy(Comparator<? super T>) - Static method in class java8.util.function.BinaryOperators
-
Returns a
BinaryOperator
which returns the lesser of two elements
according to the specified
Comparator
.
- minBy(Comparator<? super T>) - Static method in class java8.util.stream.Collectors
-
Returns a Collector
that produces the minimal element according
to a given Comparator
, described as an Optional<T>
.