Package org.apache.activemq.filter
Interface BooleanExpression
-
- All Superinterfaces:
Expression
- All Known Implementing Classes:
BooleanFunctionCallExpr,ComparisonExpression,CompositeDestinationFilter,DestinationFilter,LogicExpression,LogicExpression.ORExpression,NetworkBridgeFilter,NoLocalExpression,PrefixDestinationFilter,SimpleDestinationFilter,WildcardDestinationFilter,XPathExpression,XQueryExpression
public interface BooleanExpression extends Expression
A BooleanExpression is an expression that always produces a Boolean result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(MessageEvaluationContext message)-
Methods inherited from interface org.apache.activemq.filter.Expression
evaluate
-
-
-
-
Method Detail
-
matches
boolean matches(MessageEvaluationContext message) throws JMSException
- Parameters:
message-- Returns:
- true if the expression evaluates to Boolean.TRUE.
- Throws:
JMSException
-
-