Czar
07/04/2017, 8:41 AM.map { it as SomeSpecificType }
gildor
07/04/2017, 8:48 AMStream.of(1, "two")
.filter(it -> it instanceof String)
.collect(Collectors.toList());
Return type of this steam is List<? extends Serializable>