Guest User

Untitled

a guest
Nov 15th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import java.util.Optional;
  2. public class Rastreio {
  3. public static void main(String[] args) {
  4. Buscador buscador = new Buscador();
  5. Optional<Pessoa> pessoaOp = buscador.buscaPorNome("Fabrício de Souza Batista");
  6. pessoaOp.ifPresent(c -> {
  7. System.out.println("cpf: "+c.getCpf());
  8. });
  9. }
  10. }
Add Comment
Please, Sign In to add comment