New and Enhanced APIs That Take Advantage of Lambda Expressions and Streams in Java SE 8 (original) (raw)

Home Page

In Java SE 8, new classes have been added and existing classes have been enhanced to take advantage of lambda expressions and streams, which are described in the lesson Aggregate Operations in the Java Tutorials. You can find most of these new and enhanced classes in the following packages:

Many additions to existing classes take advantage of streams. Other additions include methods that accept instances of functional interfaces, which you can invoke with lambda expressions or method references.

New Packages

[java.util.function](../../../api/java/util/function/package-summary.html)
[java.util.stream](../../../api/java/util/stream/package-summary.html)

Modified Packages

Classes such as [Boolean](../../../api/java/lang/Boolean.html), [Integer](../../../api/java/lang/Integer.html), and other object wrapper classes for primitive types (see Autoboxing and Unboxing) are listed here because they have been enhanced with methods that are suitable for targets of method references. For example, you can use the method [Integer.sum](../../../api/java/lang/Integer.html#sum-int-int-) as a method reference, as demonstrated in the following example that adds integers contained in a list:

Integer[] intArray = {1, 2, 3, 4, 5, 6, 7, 8 }; List listOfIntegers = new ArrayList<>(Arrays.asList(intArray)); System.out.println("Sum of integers: " + listOfIntegers .stream() .reduce(Integer::sum).get());

(Note that you can also add integers contained in a stream with the method [IntStream.sum](../../../api/java/util/stream/IntStream.html#sum--).)

Package New Classes Modified Classes
java.io UncheckedIOException BufferedReader
java.lang not applicable AutoCloseable ThreadLocal String Iterable CharSequence Boolean Integer Long Float Double
java.nio.file not applicable Files
java.util PrimitiveIterator Spliterator DoubleSummaryStatistics IntSummaryStatistics LongSummaryStatistics Optional OptionalDouble OptionalInt OptionalLong Spliterators SplittableRandom StringJoiner Arrays BitSet Collection Comparator Iterator List Map Map.Entry LinkedHashMap Random TreeMap
java.util.concurrent not applicable ThreadLocalRandom
java.util.jar not applicable JarFile
java.util.zip not applicable ZipFile
java.util.logging not applicable Logger
java.util.regex not applicable Pattern