I have a ArrayList with custom objects. I want to search inside this ArrayList for Strings.
The class for the objects look like this:
public class Da
boolean found; for(CustomObject obj : ArrayOfCustObj) { if(obj.getName.equals("Android")) { found = true; } }