조건과 일치하는 스트림의 첫 번째 요소를 가져옵니다. 스트림의 조건과 일치하는 첫 번째 요소를 가져오려면 어떻게 해야 합니까?해봤는데 안 되네 this.stops.stream().filter(Stop s-> s.getStation().getName().equals(name)); 이 조건은 동작하지 않습니다.필터 메서드는 Stop 이외의 클래스에서 호출됩니다. public class Train { private final String name; private final SortedSet stops; public Train(String name) { this.name = name; this.stops = new TreeSet(); } public void addStop(Stop stop) { this.sto..