Please enable JavaScript.
Coggle requires JavaScript to display documents.
Finding and Matching - Coggle Diagram
Finding and Matching
Facilities
noneMatch
findFirst
allMatch
anyMatch
findAny
All Terminal Operations
Concepts
short circuiting Operations
anyMatch
returns
boolean
allMatch
noneMatch
findAny
Intermediate Operation
limit
findFirst
returns
optional
Optional<T>
to
avoid
null
methods
ifPresent(Consumer<T> block)
get()
orElse(T other)
isPresent()