50515253545556
public T find(Predicate<T> condition) { return this.realCollection .stream() .filter(condition) .findFirst() .orElseThrow(() -> new ObjectNotFoundException("Not element found to satisfy the condition")); }