Kafka - Streams
Identify the error in this Kafka Streams code snippet:
stream.filter(value -> value.startsWith("a"))
.map(value -> value.toUpperCase())
.filter(value -> value.length() > 5)