본문 바로가기
Java

21. Map 요소의 키/값 검증

by Status Code 2023. 5. 5.
// 키 검증
boolean isValidKey = map.keySet().stream().allMatch(key -> key != null && key.length() > 0);

// 값 검증
boolean isValidValue = map.values().stream().allMatch(value -> value > 0);

댓글