- J8Arrays - Class in java8.util
-
A place for static default implementations of the new Java 8
parallel methods of the Arrays
class.
- java8.lang - package java8.lang
-
Provides classes for some of the new static methods that were added in Java 8.
- java8.util - package java8.util
-
Provides some of the new java.util
classes and implementations
of static and default interface methods added in Java 8.
- java8.util.concurrent - package java8.util.concurrent
-
The Java 7 and Java 8 utility classes commonly used in concurrent programming.
- java8.util.concurrent.atomic - package java8.util.concurrent.atomic
-
Some of the new classes that support lock-free thread-safe programming on single
variables that were added in Java 8.
- java8.util.function - package java8.util.function
-
Functional interfaces provide target types for lambda expressions
and method references.
- java8.util.stream - package java8.util.stream
-
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
- join() - Method in class java8.util.concurrent.CompletableFuture
-
Returns the result value when complete, or throws an
(unchecked) exception if completed exceptionally.
- join() - Method in class java8.util.concurrent.ForkJoinTask
-
Returns the result of the computation when it
is
done
.
- joining() - Static method in class java8.util.stream.Collectors
-
Returns a Collector
that concatenates the input elements into a
String
, in encounter order.
- joining(CharSequence) - Static method in class java8.util.stream.Collectors
-
Returns a Collector
that concatenates the input elements,
separated by the specified delimiter, in encounter order.
- joining(CharSequence, CharSequence, CharSequence) - Static method in class java8.util.stream.Collectors
-
Returns a Collector
that concatenates the input elements,
separated by the specified delimiter, with the specified prefix and
suffix, in encounter order.