public class Security {
private secTyp1;
public Security (String aSecTyp1) {
secTyp1 = aSecTyp1;
}
}

I am trying to check if "BOND" is part of the list.

Security security = new...