According to this previous question iterating over an array is mostly the same using enhanced for or normal for because both use array accesses . So just iterate over your array:
public boolean containsTrue(boolean[] array){
for(boolean val : array){
if(val)
return true;
}
return false;
}