Get lock on all objects with in a collection or list


if(list.stream().allMatch(object -> lock.writeLock().tryLock())) {
    // code that works on all objects
}