java how to check if an array list contains an instance of a class code example
Example: java check if key exists in list
if (lista.contains(conta1)) {
System.out.println("Account found");
} else {
System.out.println("Account not found");
}