Package org.apache.camel.support.builder
Class TokenPairExpressionIterator
- java.lang.Object
-
- org.apache.camel.support.ExpressionSupport
-
- org.apache.camel.support.ExpressionAdapter
-
- org.apache.camel.support.builder.TokenPairExpressionIterator
-
- All Implemented Interfaces:
org.apache.camel.Expression,org.apache.camel.Predicate
public class TokenPairExpressionIterator extends ExpressionAdapter
Expressionto walk aMessagebody using anIterator, which grabs the content between a start and end token. The message body must be able to convert toInputStreamtype which is used as stream to access the message body. For splitting XML files useTokenXMLExpressionIteratorinstead.
-
-
Field Summary
Fields Modifier and Type Field Description protected StringendTokenprotected booleanincludeTokensprotected StringstartToken
-
Constructor Summary
Constructors Constructor Description TokenPairExpressionIterator(String startToken, String endToken, boolean includeTokens)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Iterator<?>createIterator(org.apache.camel.Exchange exchange, InputStream in, String charset)Strategy to create the iteratorprotected ObjectdoEvaluate(org.apache.camel.Exchange exchange, boolean closeStream)Strategy to evaluate the exchangeObjectevaluate(org.apache.camel.Exchange exchange)voidinit(org.apache.camel.CamelContext context)booleanmatches(org.apache.camel.Exchange exchange)StringtoString()-
Methods inherited from class org.apache.camel.support.ExpressionAdapter
assertionFailureMessage, evaluate
-
Methods inherited from class org.apache.camel.support.ExpressionSupport
assertMatches
-
-
-
-
Method Detail
-
init
public void init(org.apache.camel.CamelContext context)
- Specified by:
initin interfaceorg.apache.camel.Expression- Specified by:
initin interfaceorg.apache.camel.Predicate- Overrides:
initin classExpressionAdapter
-
matches
public boolean matches(org.apache.camel.Exchange exchange)
- Specified by:
matchesin interfaceorg.apache.camel.Predicate- Overrides:
matchesin classExpressionSupport
-
evaluate
public Object evaluate(org.apache.camel.Exchange exchange)
- Overrides:
evaluatein classExpressionSupport
-
doEvaluate
protected Object doEvaluate(org.apache.camel.Exchange exchange, boolean closeStream)
Strategy to evaluate the exchange- Parameters:
exchange- the exchangecloseStream- whether to close the stream before returning from this method.- Returns:
- the evaluated value
-
createIterator
protected Iterator<?> createIterator(org.apache.camel.Exchange exchange, InputStream in, String charset)
Strategy to create the iterator- Parameters:
exchange- the exchangein- input stream to iteratecharset- charset- Returns:
- the iterator
-
-