org.jaxen.saxpath
public interface Operator
| Field Summary | |
|---|---|
| static int | ADD
The addition operator + |
| static int | DIV
The floating point division operator div. |
| static int | EQUALS
The equal to operator =. |
| static int | GREATER_THAN
The greater-than operator > |
| static int | GREATER_THAN_EQUALS
The greater-than or equals operator >= |
| static int | LESS_THAN
The less-than operator < |
| static int | LESS_THAN_EQUALS
The less-than-or-equal-to operator <= |
| static int | MOD
The remainder operator mod. |
| static int | MULTIPLY
The multiplication operator * |
| static int | NEGATIVE
Unary - |
| static int | NOT_EQUALS
The not equal to operator ! |
| static int | NO_OP
Indicates that we're passing through a grammar production without
actually activating it. |
| static int | SUBTRACT
The subtraction operator - |
+div. This is equivalent to
/ in Java.=. This is equivalent to ==
in Java. This is a comparison operator, not an assignment operator.>>=<<=mod. This is equivalent to
% in Java.*-!=1 is matches AdditiveExpr and MultiplicativeExpr in
the XPath grammar, even though it has neither a plus,
minus, multiplication, or other sign.-