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
For a custom class to work properly in collections you'll have to implement/override the equals() methods of the class. For sorting also override compareTo().
equals()
compareTo()
See this article or google about how to implement those methods properly.