Descripción
Sintaxis
public interface Stream<T> extends BaseStream<T,Stream<T>>
Métodos
- allMatch()
- anyMatch()
- builder()
- collect()
- concat()
- count()
- distinct()
- dropWhile()
- empty()
- filter()
- findAny()
- findFirst()
- flatMap()
- flatMapToDouble()
- flatMapToInt()
- flatMapToLong()
- forEach()
- forEachOrdered()
- generate()
- iterate()
- limit()
- map()
- mapToDouble()
- mapToInt()
- mapToLong()
- max()
- min()
- noneMatch()
- of()
- ofNullable()
- peek()
- reduce()
- skip()
- sorted()
- takeWhile()
- toArray()
Ejemplo
long vacias = bf.lines().filter(l -> l.isEmpty()).count();
Líneas de Código
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.