org.apache.qpid.server.filter
Class LogicExpression

java.lang.Object
  extended by org.apache.qpid.server.filter.BinaryExpression
      extended by org.apache.qpid.server.filter.LogicExpression
All Implemented Interfaces:
BooleanExpression, Expression

public abstract class LogicExpression
extends BinaryExpression
implements BooleanExpression

A filter performing a comparison of two objects


Field Summary
 
Fields inherited from class org.apache.qpid.server.filter.BinaryExpression
left, right
 
Constructor Summary
LogicExpression(BooleanExpression left, BooleanExpression right)
           
 
Method Summary
static BooleanExpression createAND(BooleanExpression lvalue, BooleanExpression rvalue)
           
static BooleanExpression createOR(BooleanExpression lvalue, BooleanExpression rvalue)
           
abstract  Object evaluate(Filterable message)
           
 boolean matches(Filterable message)
           
 
Methods inherited from class org.apache.qpid.server.filter.BinaryExpression
equals, getExpressionSymbol, getLeft, getRight, hashCode, setLeft, setRight, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LogicExpression

public LogicExpression(BooleanExpression left,
                       BooleanExpression right)
Parameters:
left -
right -
Method Detail

createOR

public static BooleanExpression createOR(BooleanExpression lvalue,
                                         BooleanExpression rvalue)

createAND

public static BooleanExpression createAND(BooleanExpression lvalue,
                                          BooleanExpression rvalue)

evaluate

public abstract Object evaluate(Filterable message)
Specified by:
evaluate in interface Expression
Returns:
the value of this expression

matches

public boolean matches(Filterable message)
Specified by:
matches in interface BooleanExpression
Returns:
true if the expression evaluates to Boolean.TRUE.


Licensed to the Apache Software Foundation