Stream. -Match Method
- allMatch() : 모든 요소들이 매개 값(Predicate)로 주어진 조건을 만족하는지 조사
- anyMatch() : 최소한 한 개의 요소가 주어진 조건에 만족하는 지 조사
- noneMatch() : 모든 요소들이 주어진 조건을 만족하지 않는지 조사
1. 중복 되는 값 찾기.
List<Entity> list = 값;
List<Entity> vaildList = 값;
List<Entity> noneEntityList = list.stream().filter(l -> vaildList.stream().anyMatch(n -> {
return l.Id().equals(n.Id());
})).collect(Collectors.toList());
2. 중복 되지 않는 값 찾기
List<Entity> list = 값;
List<Entity> vaildList = 값;
List<Entity> noneEntityList = list.stream().filter(l -> vaildList.stream().noneMatch(n -> {
return l.Id().equals(n.Id());
})).collect(Collectors.toList());
3. 다중 조건(필드)으로 찾기
List<Entity> list = 값;
List<Entity> vaildList = 값;
List<Entity> noneEntityList = list.stream().filter(l -> vaildList.stream().anyMatch(n -> {
return l.Id().equals(n.Id()) && l.getName().equals(n.getName());
})).collect(Collectors.toList());
'JAVA' 카테고리의 다른 글
[JAVA] object List to map using stream - Object List를 Map 으로 변환하기 (0) | 2023.06.20 |
---|---|
[JAVA] List를 comma(,)로 구분된 String(문자열)으로 변환하기 (0) | 2023.06.20 |
[JAVA] HashMap Key,Value 가져오기 (0) | 2023.04.17 |
[JAVA] JSON Data to JAVA Class(Object) - Json 데이터 객체(VO)로 변환(파싱) (0) | 2023.04.17 |
[JAVA] Object 값 List 여부 확인 (0) | 2023.04.17 |