26 lines
617 B
Java
26 lines
617 B
Java
// streams/Informational.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
import java.util.*;
|
|
import java.util.stream.*;
|
|
import java.util.function.*;
|
|
|
|
public class Informational {
|
|
public static void main(String[] args) throws Exception {
|
|
System.out.println(
|
|
FileToWords.stream("Cheese.dat").count());
|
|
System.out.println(
|
|
FileToWords.stream("Cheese.dat")
|
|
.min(String.CASE_INSENSITIVE_ORDER)
|
|
.orElse("NONE"));
|
|
System.out.println(
|
|
FileToWords.stream("Cheese.dat")
|
|
.max(String.CASE_INSENSITIVE_ORDER)
|
|
.orElse("NONE"));
|
|
}
|
|
}
|
|
/* Output:
|
|
30
|
|
a
|
|
you
|
|
*/
|