The Java filter step refines a transformation data stream using a Java expression to set up conditional processing.
As shown in the sample transformation above, the output stream from the Data grid step is processed by the Java filter step. Based on the specified condition, the Java filter step sends matching data to the true step and non-matching data to the false step. Below is the condition used in this sample transformation.
if( condition) {matching step} else {non-matching step}