I have an arraylist of self defined objects (e.g., person). each obj has a boolean variable v1 (e.g., isMale). I want to check if v1 of all objs in this arraylist is true on v1, if so, return true, if any obj has v1 == false, return false. I can write a loop to achieve this. But I am wondering if there is faster way to do so. Thanks!