Package modernfeatures.java9
package modernfeatures.java9
-
ClassesClassDescriptionDemonstrates the use of private and private static methods in interfaces (Java 9+).Demonstrates Java 9 Stream API improvements:
takeWhile
: takes elements from a stream while a condition holds.dropWhile
: drops elements from a stream while a condition holds, then takes the rest.ofNullable
: creates a stream of zero or one element, safely handling nulls.