Uses of Class
org.htmlunit.xpath.operations.Operation
-
Packages that use Operation Package Description org.htmlunit.xpath.compiler Implements an XPath parser which produces an OpMap, and a so-called Compiler which produces an expression tree for fast evaluation.org.htmlunit.xpath.operations Support for XPath operations, such as +, -, string(), etc. -
-
Uses of Operation in org.htmlunit.xpath.compiler
Methods in org.htmlunit.xpath.compiler with parameters of type Operation Modifier and Type Method Description private Expression
Compiler. compileOperation(Operation operation, int opPos)
Bottle-neck compilation of an operation with left and right operands. -
Uses of Operation in org.htmlunit.xpath.operations
Subclasses of Operation in org.htmlunit.xpath.operations Modifier and Type Class Description class
And
The 'and' operation expression executor.class
Div
The 'div' operation expression executer.class
Equals
The '=' operation expression executer.class
Gt
The '>' operation expression executor.class
Gte
The '>=' operation expression executor.class
Lt
The '<' operation expression executor.class
Lte
The '<=' operation expression executor.class
Minus
The binary '-' operation expression executer.class
Mod
The 'mod' operation expression executer.class
Mult
The '*' operation expression executer.class
NotEquals
The '!=' operation expression executer.class
Or
The 'or' operation expression executer.class
Plus
The '+' operation expression executer.
-