This case is not found: ``` private Kind convertToKind(String type) { return Arrays.stream(Kind.values()) .filter(k -> k.value().equals(type)) .findFirst() .orElse(null); } ```
This case is not found: