public class SearchExpression
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
AND |
static int |
EQ |
static int |
GEQ |
static int |
GT |
static int |
LEQ |
static int |
LT |
static int |
NEQ |
static int |
NOT |
static int |
OR |
Constructor and Description |
---|
SearchExpression() |
SearchExpression(java.util.List<SearchExpression> exprList) |
SearchExpression(java.lang.String leftOp,
int operator,
java.lang.String rightOp) |
Modifier and Type | Method and Description |
---|---|
SearchOperand |
getLeftOperand() |
int |
getOperator() |
SearchOperand |
getRightOperand() |
static void |
main(java.lang.String[] args) |
void |
setLeftOperand(SearchOperand leftOperand) |
void |
setOperator(int operator) |
void |
setRightOperand(SearchOperand rightOperand) |
public static final int EQ
public static final int NEQ
public static final int GT
public static final int LT
public static final int GEQ
public static final int LEQ
public static final int AND
public static final int OR
public static final int NOT
public SearchExpression()
public SearchExpression(java.lang.String leftOp, int operator, java.lang.String rightOp)
public SearchExpression(java.util.List<SearchExpression> exprList)
public int getOperator()
public void setOperator(int operator)
public SearchOperand getLeftOperand()
public void setLeftOperand(SearchOperand leftOperand)
public SearchOperand getRightOperand()
public void setRightOperand(SearchOperand rightOperand)
public static void main(java.lang.String[] args)