274275276277278279280
* * @throws TransformerException if a error occurs creating the Expression. */ protected Expression notequals(int opPos) throws TransformerException { return compileOperation(new NotEquals(), opPos); }
278279280281282283284
112113114115116117118119120121122
{ mExpression = new Equals(); } else if (NOT_EQUAL.equals(text)) { mExpression = new NotEquals(); } else if (LESS_THAN.equals(text)) { mExpression = new LessThan(); }
308309310311312313314
311312313314315316317
276277278279280281282
314315316317318319320