Package org.apache.camel
Interface Navigate<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Are there more outputs?List<T>
next()
Next group of outputs
-
-
-
Method Detail
-
next
List<T> next()
Next group of outputs Important only invoke this once, as this method do not carry state, and is not intended to be used in a while loop, but used by a if statement instead.- Returns:
- next group or null if no more outputs
-
hasNext
boolean hasNext()
Are there more outputs? Important only invoke this once, as this method do not carry state, and is not intended to be used in a while loop, but used by a if statement instead.- Returns:
- true if more outputs
-
-